You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
402 B
10 lines
402 B
# shadowsocks config
|
|
if [[ $shadowsocks ]]; then
|
|
ss_file="/etc/v2ray/233boy/v2ray/config/server/include/ss.json"
|
|
ss_file_tmp="/tmp/ss.json.tmp"
|
|
cp -f $ss_file $ss_file_tmp
|
|
sed -i "s/6666/$ssport/; s/chacha20-ietf/$ssciphers/; s/233blog.com/$sspass/" $ss_file_tmp
|
|
sed -i "/\/\/include_ss/r $ss_file_tmp" $v2ray_server_config
|
|
sed -i "s#//include_ss#,#" $v2ray_server_config
|
|
rm -rf $ss_file_tmp
|
|
fi
|
|
|