2021-10-21 08:43:59 +00:00
|
|
|
version: 1
|
|
|
|
log: info
|
|
|
|
|
|
|
|
servers:
|
|
|
|
example_server:
|
|
|
|
listen:
|
|
|
|
- "0.0.0.0:443"
|
|
|
|
- "[::]:443"
|
|
|
|
tls: true # Enable TLS features like SNI filtering
|
|
|
|
sni:
|
|
|
|
proxy.example.com: proxy
|
|
|
|
www.example.com: nginx
|
|
|
|
default: ban
|
|
|
|
proxy_server:
|
|
|
|
listen:
|
|
|
|
- "127.0.0.1:8081"
|
|
|
|
default: remote
|
|
|
|
|
|
|
|
upstream:
|
2021-10-31 11:21:32 +00:00
|
|
|
nginx: "tcp://127.0.0.1:8080"
|
|
|
|
proxy: "tcp://127.0.0.1:1024"
|
|
|
|
remote: "tcp://www.remote.example.com:8082" # proxy to remote address
|