Last active
January 15, 2016 09:07
-
-
Save liuyangc3/3be3487ad2787407009f to your computer and use it in GitHub Desktop.
install shadowsocks on EC2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
add_source() { | |
# fix apt-get update 404 not found | |
# http://askubuntu.com/questions/244822/errors-running-apt-get-update-and-apt-get-install-mysql-server | |
cat << EOF | |
deb http://us.archive.ubuntu.com/ubuntu lucid main multiverse universe | |
deb http://us.archive.ubuntu.com/ubuntu lucid-security main multiverse universe | |
deb http://us.archive.ubuntu.com/ubuntu lucid-updates main multiverse universe | |
EOF | |
} | |
passwd="$1" | |
port=$2 | |
# up date apt-get | |
sudo -s | |
add_source >> /etc/apt/source.list | |
apt-get -y update | |
apt-get -y install build-essential python-pip python-m2crypto python-dev | |
pip install gevent shadowsocks | |
gen_config() { | |
cat << EOF | |
{ | |
"server":"0.0.0.0", | |
"server_port":$port, | |
"local_address": "127.0.0.1", | |
"local_port":1080, | |
"password":"$passwd", | |
"timeout":300, | |
"method":"aes-256-cfb", | |
"fast_open": false, | |
"workers": 2 | |
} | |
EOF | |
} | |
gen_config > /etc/shadowsocks.json | |
ssserver -c /etc/shadowsocks.json -d start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment