mirror of
https://github.com/Ysurac/openmptcprouter-vps.git
synced 2025-03-09 15:50:00 +00:00
Add v2ray support
This commit is contained in:
parent
da1a6c3560
commit
df3f4ccaff
2 changed files with 127 additions and 3 deletions
|
@ -13,7 +13,7 @@ DSVPN_PASS=${DSVPN_PASS:-$(od -vN "32" -An -tx1 /dev/urandom | tr '[:lower:]' '[
|
||||||
NBCPU=${NBCPU:-$(grep -c '^processor' /proc/cpuinfo | tr -d "\n")}
|
NBCPU=${NBCPU:-$(grep -c '^processor' /proc/cpuinfo | tr -d "\n")}
|
||||||
OBFS=${OBFS:-yes}
|
OBFS=${OBFS:-yes}
|
||||||
V2RAY_PLUGIN=${V2RAY_PLUGIN:-yes}
|
V2RAY_PLUGIN=${V2RAY_PLUGIN:-yes}
|
||||||
V2RAY=${V2RAY:-no}
|
V2RAY=${V2RAY:-yes}
|
||||||
V2RAY_UUID=${V2RAY_UUID:-$(cat /proc/sys/kernel/random/uuid | tr -d "\n")}
|
V2RAY_UUID=${V2RAY_UUID:-$(cat /proc/sys/kernel/random/uuid | tr -d "\n")}
|
||||||
UPDATE_OS=${UPDATE_OS:-yes}
|
UPDATE_OS=${UPDATE_OS:-yes}
|
||||||
UPDATE=${UPDATE:-yes}
|
UPDATE=${UPDATE:-yes}
|
||||||
|
@ -44,9 +44,9 @@ V2RAY_PLUGIN_VERSION="v1.2.0-8-g59b8f4f"
|
||||||
EASYRSA_VERSION="3.0.6"
|
EASYRSA_VERSION="3.0.6"
|
||||||
SHADOWSOCKS_VERSION="38871da8baf5cfa400983dcdf918397e48655203"
|
SHADOWSOCKS_VERSION="38871da8baf5cfa400983dcdf918397e48655203"
|
||||||
VPS_DOMAIN=${VPS_DOMAIN:-$(wget -4 -qO- -T 2 http://hostname.openmptcprouter.com)}
|
VPS_DOMAIN=${VPS_DOMAIN:-$(wget -4 -qO- -T 2 http://hostname.openmptcprouter.com)}
|
||||||
VPSPATH="server"
|
VPSPATH="server-test"
|
||||||
|
|
||||||
OMR_VERSION="0.1017"
|
OMR_VERSION="0.1018-test"
|
||||||
|
|
||||||
DIR=$( pwd )
|
DIR=$( pwd )
|
||||||
#"
|
#"
|
||||||
|
|
124
v2ray-server.json
Normal file
124
v2ray-server.json
Normal file
|
@ -0,0 +1,124 @@
|
||||||
|
{
|
||||||
|
"log": {
|
||||||
|
"loglevel": "debug",
|
||||||
|
"error": "/tmp/v2rayError.log"
|
||||||
|
},
|
||||||
|
"transport": {
|
||||||
|
"tcpSettings": {},
|
||||||
|
"wsSettings": {},
|
||||||
|
"kcpSettings": {
|
||||||
|
"mtu": 1460,
|
||||||
|
"tti": 10,
|
||||||
|
"uplinkCapacity": 100,
|
||||||
|
"downlinkCapacity": 100,
|
||||||
|
"congestion": false,
|
||||||
|
"readBufferSize": 8,
|
||||||
|
"writeBufferSize": 8
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"inbounds": [
|
||||||
|
{
|
||||||
|
"tag": "Vmess-In1",
|
||||||
|
"port": 65228,
|
||||||
|
"protocol": "vless",
|
||||||
|
"settings": {
|
||||||
|
"disableInsecureEncryption": false,
|
||||||
|
"clients": [
|
||||||
|
{
|
||||||
|
"id": "V2RAY_UUID",
|
||||||
|
"level": 0,
|
||||||
|
"alterId": 0,
|
||||||
|
"email": "openmptcprouter"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"streamSettings": {
|
||||||
|
"sockopt": {
|
||||||
|
"mark": 0
|
||||||
|
},
|
||||||
|
"network": "tcp",
|
||||||
|
"security": "tls",
|
||||||
|
"tlsSettings": {
|
||||||
|
"certificates": [
|
||||||
|
{
|
||||||
|
"certificateFile": "/etc/openvpn/ca/pki/issued/server.crt",
|
||||||
|
"keyFile": "/etc/openvpn/ca/pki/private/server.key"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"listen": "127.0.0.1",
|
||||||
|
"port": 10085,
|
||||||
|
"protocol": "dokodemo-door",
|
||||||
|
"settings": {
|
||||||
|
"address": "127.0.0.1"
|
||||||
|
},
|
||||||
|
"tag": "api"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"outbounds": [
|
||||||
|
{
|
||||||
|
"protocol": "freedom",
|
||||||
|
"settings": {
|
||||||
|
"userLevel": 0
|
||||||
|
},
|
||||||
|
"tag": "direct"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"routing": {
|
||||||
|
"rules": [
|
||||||
|
{
|
||||||
|
"type": "field",
|
||||||
|
"inboundTag": [
|
||||||
|
"Vmess-In1"
|
||||||
|
],
|
||||||
|
"outboundTag": "WH-Lan1",
|
||||||
|
"domain": [
|
||||||
|
"full:WH-Lan1"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"inboundTag": [
|
||||||
|
"api"
|
||||||
|
],
|
||||||
|
"outboundTag": "api",
|
||||||
|
"type": "field"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"reverse": {
|
||||||
|
"portals": [
|
||||||
|
{
|
||||||
|
"tag": "WH-Lan1",
|
||||||
|
"domain": "WH-Lan1"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"stats": {},
|
||||||
|
"api": {
|
||||||
|
"tag": "api",
|
||||||
|
"services": [
|
||||||
|
"HandlserService",
|
||||||
|
"LoggerService",
|
||||||
|
"StatsService"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"policy": {
|
||||||
|
"levels": {
|
||||||
|
"0": {
|
||||||
|
"uplinkOnly": 0,
|
||||||
|
"downlinkOnly": 0,
|
||||||
|
"bufferSize": 512,
|
||||||
|
"connIdle": 600,
|
||||||
|
"statsUserUplink": true,
|
||||||
|
"statsUserDownlink": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"system": {
|
||||||
|
"statsInboundUplink": true,
|
||||||
|
"statsInboundDownlink": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue