Shadowsocks: Server installation and configuration on Ubuntu 14.04.
#!/bin/bash | |
sudo apt-get -y update | |
sudo apt-get -y upgrade | |
sudo apt-get install -y python-gevent python-pip python-m2crypto supervisor | |
sudo pip install shadowsocks | |
sudo mkdir -p touch /etc/shadowsocks | |
sudo cat > /etc/shadowsocks/shadowsocks.json <<EOF | |
{ | |
"server": "0.0.0.0", | |
"server_port": 20444, | |
"password": "***", | |
"timeout": 300, | |
"method": "rc4-md5" | |
} | |
EOF | |
sudo cat > /etc/supervisor/conf.d/shadowsocks.conf <<EOF | |
[program:shadowsocks] | |
command=/usr/local/bin/ssserver -c /etc/shadowsocks/shadowsocks.json | |
autorestart=true | |
user=nobody | |
EOF | |
invoke-rc.d supervisor restart | |
supervisorctl status |
This comment has been minimized.
This comment has been minimized.
You can say that with the help of this code people get to know how to make their websites good look better. You can know better by following gist.github.com site and check the codes, notes and snippets there. Here i came to get the source for writing service but i think this website is best for the developers because it all about the solution of different coding errors. |
This comment has been minimized.
This comment has been minimized.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
谢谢