Created
November 27, 2018 06:29
-
-
Save farrrr/e7daa9631c9fefddd1e5a8e25691ff81 to your computer and use it in GitHub Desktop.
LEDE
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": "/dev/null", | |
| "error": "/tmp/v2ray_log.log", | |
| "loglevel": "error" | |
| }, | |
| "routing": {}, | |
| "policy": {}, | |
| "inbound": { | |
| "port": 23456, | |
| "listen": "0.0.0.0", | |
| "protocol": "socks", | |
| "settings": { | |
| "auth": "noauth", | |
| "udp": true, | |
| "ip": "127.0.0.1" | |
| } | |
| }, | |
| "inboundDetour": [{ | |
| "listen": "0.0.0.0", | |
| "port": 3333, | |
| "protocol": "dokodemo-door", | |
| "settings": { | |
| "network": "tcp,udp", | |
| "followRedirect": true | |
| } | |
| }], | |
| "outbound": { | |
| "tag": "agentout", | |
| "protocol": "vmess", | |
| "settings": { | |
| "vnext": [{ | |
| "address": "YOUR IP ADDRESS", | |
| "port": 443, | |
| "users": [{ | |
| "id": "YOUR UUID", | |
| "security": "auto", | |
| "alertId": 16 | |
| }] | |
| }] | |
| }, | |
| "streamSettings": { | |
| "network": "tcp", | |
| "security": "tls", | |
| "tlsSettings": { | |
| "serverName": "YOUR SERVER NAME", | |
| "allowInsecure": false | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment