Created
December 30, 2016 08:49
-
-
Save Ehekatl/dbaaa9249f6ff01f7d37c54b3a48d35d to your computer and use it in GitHub Desktop.
v2ray server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"log": { | |
"access": "/var/log/v2ray/access.log", | |
"error": "/var/log/v2ray/error.log", | |
"loglevel": "warning" | |
}, | |
"inbound": { | |
"port": 443, | |
"protocol": "vmess", | |
"settings": { | |
"clients": [{ | |
"id": "", | |
"level": 1, | |
"alterId": 20 | |
}] | |
}, | |
"streamSettings": { | |
"network": "kcp" | |
} | |
}, | |
"inboundDetour": [{ | |
"port": 443, | |
"protocol": "vmess", | |
"settings": { | |
"clients": [{ | |
"id": "", | |
"level": 1, | |
"alterId": 20 | |
}] | |
} | |
}, { | |
"protocol": "shadowsocks", | |
"port": , | |
"settings": { | |
"method": "aes-128-cfb", | |
"password": "", | |
"udp": true, | |
"level": 1 | |
} | |
}], | |
"outbound": { | |
"protocol": "freedom", | |
"settings": {} | |
}, | |
"transport": { | |
"tcpSettings": { | |
"connectionReuse": false | |
}, | |
"kcpSettings": { | |
"mtu": 1350, | |
"tti": 50, | |
"uplinkCapacity": 500, | |
"downlinkCapacity": 500, | |
"congestion": false, | |
"readBufferSize": 10, | |
"writeBufferSize": 10, | |
"header": { | |
"type": "none" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment