Install Shadowsocks proxy on Debian or Ubuntu
Server:
- Install:
sudo apt install shadowsocks-libev
- Restore config from backup if you have one:
sudo cp -a backup/etc/shadowsocks-libev /etc
or just:sudo tee /etc/shadowsocks-libev/config.json << EOF { "server":"0.0.0.0", "server_port":8388, "local_port":1080, "password":"<password>", "timeout":60, "method":"chacha20-ietf-poly1305" } EOF
- Disable server …