Skip to content

Commit

Permalink
Added simple configuration
Browse files Browse the repository at this point in the history
Signed-off-by: Teddysun <[email protected]>
  • Loading branch information
teddysun committed Jun 21, 2018
1 parent f38648e commit 5b2e055
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 0 deletions.
11 changes: 11 additions & 0 deletions simple_config/shadowsocks-go/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"port_password":{
"9000":"password0",
"9001":"password1",
"9002":"password2",
"9003":"password3",
"9004":"password4"
},
"method":"aes-256-cfb",
"timeout":300
}
11 changes: 11 additions & 0 deletions simple_config/shadowsocks-libev/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"server":"0.0.0.0",
"server_port":9000,
"password":"password0",
"timeout":300,
"user":"nobody",
"method":"aes-256-gcm",
"fast_open":false,
"nameserver":"8.8.8.8",
"mode":"tcp_and_udp"
}
15 changes: 15 additions & 0 deletions simple_config/shadowsocks-manager/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"server":"0.0.0.0",
"port_password":{
"9000":"password0",
"9001":"password1",
"9002":"password2",
"9003":"password3",
"9004":"password4"
},
"timeout":300,
"user":"nobody",
"method":"aes-256-gcm",
"nameserver":"8.8.8.8",
"mode":"tcp_and_udp"
}
15 changes: 15 additions & 0 deletions simple_config/shadowsocks-python/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"server":"0.0.0.0",
"local_address":"127.0.0.1",
"local_port":1080,
"port_password":{
"9000":"password0",
"9001":"password1",
"9002":"password2",
"9003":"password3",
"9004":"password4"
},
"timeout":300,
"method":"aes-256-gcm",
"fast_open": false
}
23 changes: 23 additions & 0 deletions simple_config/shadowsocks-r/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"server":"0.0.0.0",
"server_ipv6": "[::]",
"local_address":"127.0.0.1",
"local_port":1080,
"port_password":{
"9000":"password0",
"9001":"password1",
"9002":"password2",
"9003":"password3",
"9004":"password4"
},
"timeout":300,
"method":"aes-256-cfb",
"protocol": "auth_chain_a",
"protocol_param": "",
"obfs": "http_simple_compatible",
"obfs_param": "",
"redirect": "",
"dns_ipv6": false,
"fast_open": false,
"workers": 1
}

0 comments on commit 5b2e055

Please sign in to comment.