Hello,
On Sat, 19 Feb 2022 at 17:46, Moutasem Al Khnaifes <[email protected]> wrote: > but for some reason HAProxy thinks that Plex is down John already explained this perfectly. > the status page is inaccessible Your configuration is: > listen stats > bind localhost:1936 [...] > stats uri /haproxy?stats *NEVER* configure a bind line requiring a DNS lookup, especially a hostname returning both address families, whether haproxy is listening to 127.0.0.1 or ::1 or something else entirely is depend on compile options (USE_GETADDRINFO) and libc behavior. If haproxy is listening on 127.0.0.1:1936, then you'd access the stats socket as per your configuration with: "http://127.0.0.1:1936/haproxy?stats" But it could be listening on its IPv6 equivalent ::1 as well. I suggest you change the configuration to your actual intention, which probably is: bind 127.0.0.1:1936 cheers, lukas

