Created
June 26, 2020 03:28
-
-
Save kaaass/f88695a05c966141c11a10d62f77a09d to your computer and use it in GitHub Desktop.
V2 HTTP Proxy
This file contains 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": { | |
"loglevel": "warning" | |
}, | |
"inbounds": [{ | |
"tag": "http-inbound", | |
"port": 8123, | |
"listen": "127.0.0.1", | |
"protocol": "http", | |
"settings": { | |
"timeout": 0 | |
} | |
}], | |
"outbounds": [{ | |
"protocol": "freedom", | |
"settings": {}, | |
"tag": "direct" | |
}], | |
"routing": { | |
"rules":[{ | |
"type": "field", | |
"inboundTag": ["http-inbound"], | |
"outboundTag": "proxy" | |
}] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment