阿里云Windows服务器搭建ss报500 Internal Privoxy Error(解决方案)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/GeekLeee/article/details/88833044

将shadowsocks-server.bat与shadowsocks-libqss.exe, config.json放在同一个文件夹下,执行shadowsocks-server.bat即可

config.json

{
    "server":"0.0.0.0",
    "server_port":8388,
    "local_address":"127.0.0.1",
    "local_port":1080,
    "password":"password",
    "timeout":600,
    "method":"rc4-md5",
    "http_proxy": false,
    "auth": false
}

shadowsocks-server.bat

::This batch will run shadowsocks-libqss in server mode using the config.json file in current folder as the configuration

@echo off
::this script is updated for version 1.7.0
shadowsocks-libqss.exe -c config.json -S

http://blog.51cto.com/qing0991/1658996
阿里云安全规则配置
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/GeekLeee/article/details/88833044