mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 04:09:12 +00:00
17 lines
No EOL
315 B
INI
17 lines
No EOL
315 B
INI
frontend www-incoming
|
|
bind :80
|
|
mode http
|
|
default_backend ui
|
|
acl api_req path -i -m beg /api
|
|
acl api_req path -i -m beg /magic
|
|
use_backend api if api_req
|
|
|
|
backend ui
|
|
mode http
|
|
balance roundrobin
|
|
server server0 ${UI_ADDR} check
|
|
|
|
backend api
|
|
mode http
|
|
balance roundrobin
|
|
server server0 ${API_ADDR} check |