nginx相关

1.负载均衡

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
在http模块下添加
upstream videoapi {
#weigth参数表示权值,权值越高被分配到的几率越大
server localhost:8080 weight=1;
server localhost:8082 weight=2;
}

修改
server {
listen 80;
server_name videoapi.site;

#反代
location / {
#访问http://videoapi
proxy_pass http://videoapi;
proxy_redirect default;
}
}

阅读更多

时间轮盘app实现

在mac上看到一款炫酷锁屏,所以按照自己的思路实现了其中一个效果,顺手码了个App,名为“时间轮盘”。“时间轮盘”包括动态壁纸和屏保功能。
下载地址

阅读更多

linux下使用git push时免输入账号密码

1.在~下,创建文件 .git-credentials, 用gedit编辑此文件:

1
2
3
suda@suda-Aspire-4750:~$cd
suda@suda-Aspire-4750:~$touch .git-credentials
suda@suda-Aspire-4750:~$gedit .git-credentials

阅读更多

解决使用hexo的常见问题

#1、Hexo无法解析模板文件

阅读更多

如何去除gedit编辑文件时生成的备份文件

ubuntu下使用gedit是个不错的选择,但每次编辑都会生成*~的备份文件,
改的文件多了就会积累许多垃圾了,那么如何取消备份文件生成,或者批量删除这些文件呢?
下面就给大家提供两个方法来解决这个问题

阅读更多

为Github帐号添加SSH keys

#一、创建SSH key

1
2
3
4
$ ssh-keygen -t rsa -C "your_email@example.com"
# Creates a new ssh key, using the provided email as a label
# Generating public/private rsa key pair.
# Enter file in which to save the key (/home/you/.ssh/id_rsa):

阅读更多

Test

这是一次测试

阅读更多