Jamiiwej2903 commited on
Commit
66adad0
·
verified ·
1 Parent(s): c78e4b1

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +58 -0
config.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "log": {
3
+ "loglevel": "none"
4
+ },
5
+ "inbounds": [
6
+ {
7
+ "tag": "http",
8
+ "port": 10808,
9
+ "listen": "0.0.0.0",
10
+ "protocol": "http",
11
+ "sniffing": {
12
+ "enabled": true,
13
+ "destOverride": [
14
+ "http",
15
+ "tls"
16
+ ],
17
+ "routeOnly": false
18
+ },
19
+ "settings": {
20
+ "auth": "noauth",
21
+ "udp": true,
22
+ "allowTransparent": false
23
+ }
24
+ }
25
+ ],
26
+ "outbounds": [
27
+ {{TEMPLATE}}
28
+ ],
29
+ "policy": {
30
+ "levels": {
31
+ "0": {
32
+ "handshake": 2,
33
+ "connIdle": 120
34
+ }
35
+ }
36
+ },
37
+ "routing": {
38
+ "domainStrategy": "IPIfNonMatch",
39
+ "domainMatcher": "hybrid",
40
+ "rules": [
41
+ {
42
+ "type": "field",
43
+ "domain": [
44
+ "bing.com",
45
+ "cloudflare.com"
46
+ ],
47
+ "outboundTag": "wireguard"
48
+ }
49
+ ]
50
+ },
51
+ "transport": {
52
+ "tlsSettings": {
53
+ "minVersion": "1.2",
54
+ "maxVersion": "1.3",
55
+ "cipherSuites": "TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256:TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256"
56
+ }
57
+ }
58
+ }