disable host-ssh timeout
This commit is contained in:
parent
5ec693114f
commit
61dc8203ac
1 changed files with 6 additions and 4 deletions
|
@ -21,18 +21,20 @@ frontend ssh
|
||||||
mode tcp
|
mode tcp
|
||||||
bind {{ ipv4 }}:22
|
bind {{ ipv4 }}:22
|
||||||
|
|
||||||
default_backend ssh
|
default_backend host-ssh
|
||||||
|
|
||||||
frontend http
|
frontend http
|
||||||
mode tcp
|
mode tcp
|
||||||
bind {{ ipv4 }}:80
|
bind {{ ipv4 }}:80
|
||||||
|
|
||||||
default_backend http
|
default_backend host-http
|
||||||
|
|
||||||
|
backend host-ssh
|
||||||
|
timeout server 0
|
||||||
|
|
||||||
backend ssh
|
|
||||||
mode tcp
|
mode tcp
|
||||||
server localhost 127.0.0.1
|
server localhost 127.0.0.1
|
||||||
|
|
||||||
backend http
|
backend host-http
|
||||||
mode tcp
|
mode tcp
|
||||||
server localhost 127.0.0.1
|
server localhost 127.0.0.1
|
||||||
|
|
Loading…
Reference in a new issue