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:
parent
13a69c8988
commit
8cd7031fa0
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue