haproxy.conf 370 B

123456789101112131415161718192021
  1. global
  2. nbproc 1
  3. maxconn 100
  4. log 127.0.0.1 local6 debug
  5. defaults
  6. mode http
  7. retries 3
  8. timeout connect 5s
  9. timeout client 10s
  10. timeout server 10s
  11. frontend hue-frontend 127.0.0.1:8000
  12. mode http
  13. timeout client 120s
  14. option forwardfor
  15. option http-server-close
  16. #option http-pretend-keepalive
  17. default_backend hue-backend