- A+
1.
apt-get install python-pip
apt-get install python-pip python-m2crypto supervisor
2.
pip install shadowsocks
3.
配置shadowsocks服务端:
在 /etc目录下创建 shadowsocks.json 文件,将下面的内容放进去:
{
"server":"my_server_ip",
"server_port":8388,
"local_address": "127.0.0.1",
"local_port":1080,
"password":"mypassword",
"timeout":300,
"method":"aes-256-cfb",
"fast_open": false,
"workers": 1
}
4.
然后启动运行 shadowsocks服务器端:
ssserver -c /etc/shadowsocks.json
5.
添加到启动项:
/etc/supervisor/conf.d/shadowsocks.conf ,
增加下面的内容:
[program:shadowsocks]
command=ssserver -c /etc/shadowsocks.json
autorestart=true
user=nobody
并在 /etc/default/supervisor 文件的后面加入下面的一行内容:
ulimit -n 51200
接着运行命令,启动supervisor:
service supervisor start
supervisorctl reload
sudo vi /etc/rc.local
在这个配置文件的exit 0前面一行加上
service supervisor start
保存。
看你是否配置成功你可以在现在关机重启之后直接打开浏览器看是否代理成功
- 我的微信
- 这是我的微信扫一扫
- 我的微信公众号
- 我的微信公众号扫一扫