niclau

Results 2 issues of niclau

Just like Proxy SwitchyOmega, it has an option that allow users to restore add-on settings over URL. Would you plan/like to add this option? Thanks

目前我在openwrt 18.06.1上已经运行了一个v2ray用作透明代理, 现在想再运行一个v2ray用作中转服务器。 通过修改/etc/init.d/v2ray发现不好使,它只会运行config1的实例。 START=95 CONFIG1=/etc/v2ray/config1.conf #透明代理 CONFIG2=/etc/v2ray/config2.conf #中转 SERVICE_WRITE_PID=1 SERVICE_DAEMONIZE=1 start() { service_start /usr/bin/v2ray -config $CONFIG1 service_start /usr/bin/v2ray -config $CONFIG2 } stop() { service_stop /usr/bin/v2ray } 手动在ssh下执行v2ray -config /etc/v2ray/config2.conf则能正常启动第2个实例,...