I had read that there are issues with health checks and stats when using
nbproc, but I'm having trouble finding any details.

1. What are the issues to watch out for?
2. Do these issues still exist with ssl if the HTTP part of the processing
is only bound to what process? For example:

listen ssl-front
  mode tcp
  ...
  bind-process 2 3 4
  bind 0.0.0.0:443 ssl crt foo.pem
  server http 127.0.0.1:81 send-proxy

frontend http-in
  bind 127.0.0.1:81 accept-proxy
  bind 0.0.0.0:80 name non-ssl
  bind-process 1

backend test_backend
 bind-process 1
 stats enable
 ...
 stats uri /stats
 server web1 127.0.0.1:82 chec

Reply via email to