Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
back to http for health checks (#26)
Browse files Browse the repository at this point in the history
* back to http for health checks

Signed-off-by: Erin Schnabel <[email protected]>
  • Loading branch information
Erin Schnabel authored and BarDweller committed Sep 8, 2017
1 parent ac4630b commit 74ace85
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions haproxy-dev.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -117,35 +117,35 @@ backend auth
option httplog
option httpchk GET /auth/health HTTP/1.1\r\nHost:localhost
balance roundrobin
server auth1 auth:9443 ssl check check-ssl verify none
server auth1 auth:9080 check inter 1m

backend map
mode http
option httplog
option httpchk GET /map/v1/health HTTP/1.1\r\nHost:localhost
balance roundrobin
server map1 map:9443 ssl check check-ssl verify none
server map1 map:9080 check inter 1m

backend mediator
mode http
option httplog
option httpchk GET /mediator HTTP/1.1\r\nHost:localhost
balance roundrobin
server mediator1 mediator:9443 ssl check check-ssl verify none
server mediator1 mediator:9080 check inter 1m

backend player
mode http
option httplog
option httpchk GET /players/v1/health HTTP/1.1\r\nHost:localhost
balance roundrobin
server player1 player:9443 ssl check check-ssl verify none
server player1 player:9080 check inter 1m

backend room
mode http
option httplog
option httpchk HEAD / HTTP/1.1\r\nHost:localhost
balance roundrobin
server room1 room:9443 ssl check check-ssl verify none
server room1 room:9080 check inter 1m

backend roomjs
mode http
Expand Down
10 changes: 5 additions & 5 deletions haproxy.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -117,35 +117,35 @@ backend auth
option httplog
option httpchk GET /auth/health HTTP/1.1\r\nHost:localhost
balance roundrobin
server auth1 auth:9443 ssl check check-ssl verify none
server auth1 auth:9080 check inter 1m

backend map
mode http
option httplog
option httpchk GET /map/v1/health HTTP/1.1\r\nHost:localhost
balance roundrobin
server map1 map:9443 ssl check check-ssl verify none
server map1 map:9080 check inter 1m

backend mediator
mode http
option httplog
option httpchk GET /mediator HTTP/1.1\r\nHost:localhost
balance roundrobin
server mediator1 mediator:9443 ssl check check-ssl verify none
server mediator1 mediator:9080 check inter 1m

backend player
mode http
option httplog
option httpchk GET /players/v1/health HTTP/1.1\r\nHost:localhost
balance roundrobin
server player1 player:9443 ssl check check-ssl verify none
server player1 player:9080 check inter 1m

backend room
mode http
option httplog
option httpchk HEAD / HTTP/1.1\r\nHost:localhost
balance roundrobin
server room1 room:9443 ssl check check-ssl verify none
server room1 room:9080 check inter 1m

backend roomjs
mode http
Expand Down

0 comments on commit 74ace85

Please sign in to comment.