- 配置 docker-compose.yml
cat > ./docker-compose.yml << \EOF
version: '3'
services:
python:
image: qiujun8023/shadowsocks:python
restart: always
network_mode: host
environment:
APP_SREVER: '::'
APP_METHOD: aes-256-cfb
APP_TIMEOUT: 60
APP_FAST_OPEN: 'false'
APP_LOG_ENABLE: 'true'
APP_LOG_LEVEL: info
APP_API_URL: https://example.com/
APP_NODE_ID: 1
APP_NODE_TOKEN: token
APP_SYNC_INTERVAL: 30
EOF
- 运行
docker-compose up -d
字段 | 描述 |
---|---|
APP_SREVER | shadowsocks 的 server 字段,docker 请使用 '::' 或者 '0.0.0.0' |
APP_METHOD | shadowsocks 的加密方式 |
APP_TIMEOUT | shadowsocks 的超时时间 |
APP_FAST_OPEN | shadowsocks 的 TCP Fast Open |
APP_LOG_ENABLE | 是否打印日志,建议设置为 true |
APP_LOG_LEVEL | 日志打印等级 |
APP_API_URL | ss-panel 对应的地址 |
APP_NODE_ID | ss-panel 对应的节点编号 |
APP_NODE_TOKEN | ss-panel 对应的节点Token |
APP_SYNC_INTERVAL | shadowsocks 与 ss-panel 的交互时间间隔 |
A fast tunnel proxy that helps you bypass firewalls.
Features:
- TCP & UDP support
- User management API
- TCP Fast Open
- Workers and graceful restart
- Destination IP blacklist
Debian / Ubuntu:
apt-get install python-pip
pip install shadowsocks
CentOS:
yum install python-setuptools && easy_install pip
pip install shadowsocks
Windows:
See Install Shadowsocks Server on Windows.
ssserver -p 443 -k password -m aes-256-cfb
To run in the background:
sudo ssserver -p 443 -k password -m aes-256-cfb --user nobody -d start
To stop:
sudo ssserver -d stop
To check the log:
sudo less /var/log/shadowsocks.log
Check all the options via -h
. You can also use a [Configuration] file
instead.
Create configeration file and run
To start:
ssserver -c /etc/shadowsocks.json
You can find all the documentation in the Wiki.
Apache License