lede/package/lean/luci-app-v2ray/root/etc/v2ray.include
bc li 6a87dd2602 Add luci-app-v2ray.
按照大雕的 ssr 改了一个简化版的 v2ray 。。
支持的功能比较少。。只有基本款的 tcp/kcp/ws , tls/mux ,动态端口什么的没写
使用前需要把 v2ray 和 v2ctl 放在 /usr/bin/v2ray/ 目录下并 chmod +x
增加了 lua-cjson 和 ca-certificates 依赖,前者被 /etc/v2ray/gen_config.lua 用于生成 v2ray 的 json 配置文件, 后者用于 tls+ws 模式下的系统的证书
翻译可能不全,不过有些翻译了的话让人感到更奇怪。。(逃
2018-03-08 21:43:55 +08:00

12 lines
213 B
Bash
Executable File

#!/bin/sh
ssr_enable=$(uci get v2ray.@v2ray[0].enabled 2>/dev/null)
if [ $ssr_enable -eq 1 ]; then
if pidof v2ray>/dev/null; then
/etc/init.d/v2raypro reload
else
/etc/init.d/v2raypro restart
fi
fi