On Thu, 27 Mar 2025 at 09:34, haproxy <hapr...@arcict.com> wrote: > > Hello Lukas, > > Thank you very much for your reply! > > The "mode http" does work fine when I access the HAProxy server > (192.168.0.131:9000) straight from the webbrowser. > > the log: 192.168.0.131 local0 haproxy 192.168.0.108:54119 > [27/Mar/2025:09:16:09.586] public public_backend/web01 0/0/6/5/11 404 400 - - > --VN 3/3/0/0/0 0/0 "GET / HTTP/1.1" > opening a new private window causes the public_backend/web01 to change to > public_backend/web02 or public_backend/web03 . > A refresh of any window adds an entry for that particular > public_backend/webxx server . So this is working 100% as intended. > > Note that the curl setup in php works fine when accessing the Omnis server > directly, so there is no faulty php code.
I disagree, you cannot make that assumption with the information you have at this point. > public public/<NOSRV> -1/-1/-1/-1/0 400 0 - - PR-- 1/1/0/0/0 0/0 "<BADREQ>" This means that haproxy blocked the request because of an invalid HTTP syntax: PR The proxy blocked the client's HTTP request, either because of an invalid HTTP syntax, in which case it returned an HTTP 400 error to the client, Use "show errors" on the admin socket to dig into it further. Lukas