diff options
Diffstat (limited to 'roles/shadowsocks/templates')
-rw-r--r-- | roles/shadowsocks/templates/config.json.j2 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/roles/shadowsocks/templates/config.json.j2 b/roles/shadowsocks/templates/config.json.j2 new file mode 100644 index 0000000..c5fb0cb --- /dev/null +++ b/roles/shadowsocks/templates/config.json.j2 @@ -0,0 +1,13 @@ +{ + "server": ["::0", "0.0.0.0"], + "server_port": {{ shadowsocks.server_port }}, + "local_port": 1080, + "password": "{{ shadowsocks.password }}", + "method": "{{ shadowsocks.method }}", + "nameserver": "{{ shadowsocks.nameserver }}", + "timeout": 600, + "fast_open": true, + "reuse_port": true, + "no_delay": true, + "user": "nobody" +} |