| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "log": {
- "loglevel": "warning"
- },
- "inbounds": [
- {
- "port": 443,
- "protocol": "vless",
- "settings": {
- "clients": [
- {
- "id": "", // 填写你的 UUID
- "level": 0,
- "email": "[email protected]"
- }
- ],
- "decryption": "none",
- "fallbacks": [
- {
- "dest": 80
- }
- ]
- },
- "streamSettings": {
- "network": "tcp",
- "security": "tls",
- "tlsSettings": {
- "alpn": [
- "http/1.1"
- ],
- "certificates": [
- {
- "certificateFile": "/path/to/fullchain.crt", // 换成你的证书,绝对路径
- "keyFile": "/path/to/private.key" // 换成你的私钥,绝对路径
- }
- ]
- }
- }
- }
- ],
- "outbounds": [
- {
- "protocol": "freedom"
- }
- ]
- }
|