1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {
- "log": {
- "access": "/var/log/xray/access.log",
- "error": "/var/log/xray/error.log",
- "loglevel": "warning"
- },
- "inbounds": [
- {
- "port": 443,
- "protocol": "vless",
- "settings": {
- "clients": [],
- "decryption": "none",
- "fallbacks": [
- {
- "dest": 60000,
- "alpn": "",
- "xver": 1
- },
- {
- "dest": 60001,
- "alpn": "h2",
- "xver": 1
- },
- {
- "dest": 60002,
- "path": "/xray",
- "xver": 1
- }
- ]
- },
- "streamSettings": {
- "network": "tcp",
- "security": "xtls",
- "xtlsSettings": {
- "minVersion": "1.2",
- "certificates": [
- {
- "certificateFile": "/aidan/xray/xray.crt",
- "keyFile": "/aidan/xray/xray.key"
- }
- ]
- }
- },
- "sniffing": {
- "enabled": true,
- "destOverride": [
- "http",
- "tls"
- ]
- }
- },
- {
- "port": 60002,
- "listen": "127.0.0.1",
- "protocol": "vless",
- "settings": {
- "clients": [],
- "decryption": "none"
- },
- "streamSettings": {
- "network": "ws",
- "security": "none",
- "wsSettings": {
- "acceptProxyProtocol": true,
- "path": "/xray"
- }
- }
- }
- ],
- "outbounds": [
- {
- "protocol": "freedom"
- }
- ]
- }
|