mirror of
https://github.com/sadoyan/aralez.git
synced 2026-04-29 22:38:36 +08:00
1. Nested upstreams with params 2. SSL upstream support 3. Upstreams move to yaml format 4. Command line start arguments
47 lines
971 B
YAML
47 lines
971 B
YAML
upstreams:
|
|
myip.netangels.net:
|
|
paths:
|
|
"/draw":
|
|
protocol: "wsoc"
|
|
ssl: false
|
|
servers:
|
|
- "192.168.1.1:8000"
|
|
"/":
|
|
protocol: "http"
|
|
ssl: false
|
|
servers:
|
|
- "127.0.0.1:8000"
|
|
- "127.0.0.3:8000"
|
|
"/ping":
|
|
protocol: "http"
|
|
ssl: false
|
|
servers:
|
|
- "127.0.0.1:8000"
|
|
- "127.0.0.4:8000"
|
|
polo.netangels.net:
|
|
paths:
|
|
"/":
|
|
protocol: "http"
|
|
ssl: false
|
|
servers:
|
|
- "192.168.1.10:8000"
|
|
"/ws":
|
|
protocol: "wsoc"
|
|
ssl: false
|
|
servers:
|
|
- "192.168.1.1:8000"
|
|
glop.netangels.net:
|
|
paths:
|
|
"/":
|
|
protocol: "http"
|
|
ssl: false
|
|
servers:
|
|
- "192.168.1.10:8000"
|
|
- "192.168.1.10:8000"
|
|
# apt.netangels.net:
|
|
# paths:
|
|
# "/":
|
|
# protocol: "http"
|
|
# ssl: true
|
|
# servers:
|
|
# - "apt.netangels.net:443" |