haproxy: fix haproxy config to listen for the fedmsgs that fedmsg-gateway emits.

Turns out that 'localhost' resolves to ::1 now, but we aren't using ipv6 here but
ipv4, so haproxy was listening in the wrong place for fedmsgs to appear.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2019-01-10 18:22:05 +00:00
parent 13a69c8988
commit 8cd7031fa0

View file

@ -599,7 +599,7 @@ backend fedmsg-raw-zmq-outbound-backend
timeout queue 5000
timeout server 86400000
timeout connect 86400000
server localhost localhost:9942 weight 1 maxconn 16384
server localhost 127.0.0.1:9942 weight 1 maxconn 16384
# While the above fedmsg-raw-zmq-outbound forwards incoming connections to an
# instance of the "fedmsg-gateway" daemon (which pushes internal messages out),