aboutsummaryrefslogtreecommitdiff
path: root/dropped/template/v2ray-client-config.json.template
blob: 0c99c6d2e7035250261c04b75c5847798131f653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
    "inbounds": [
        {
            "port": 1080,
            "listen": "127.0.0.1",
            "protocol": "socks",
            "sniffing": {
                "enabled": true,
                "destOverride": [
                    "http",
                    "tls"
                ]
            },
            "settings": {
                "auth": "noauth",
                "udp": false
            }
        }
    ],
    "outbounds": [
        {
            "protocol": "vmess",
            "settings": {
                "vnext": [
                    {
                        "address": "$CRUPEST_DOMAIN",
                        "port": 443,
                        "users": [
                            {
                                "id": "$CRUPEST_V2RAY_TOKEN",
                                "alterId": 0
                            }
                        ]
                    }
                ]
            },
            "streamSettings": {
                "network": "ws",
                "security": "tls",
                "wsSettings": {
                    "path": "/_$CRUPEST_V2RAY_PATH"
                }
            }
        }
    ]
}