16 lines
249 B
Text
16 lines
249 B
Text
|
|
global
|
||
|
|
log stdout format raw local0 debug
|
||
|
|
|
||
|
|
defaults
|
||
|
|
mode tcp
|
||
|
|
log global
|
||
|
|
|
||
|
|
frontend "${APP}"
|
||
|
|
mode tcp
|
||
|
|
bind *:"${PORT}" name "${APP}"
|
||
|
|
default_backend "${APP}"
|
||
|
|
|
||
|
|
backend "${APP}"
|
||
|
|
mode tcp
|
||
|
|
server "${APP}" "${APP}":"${PRIVATE_PORT}" check
|