Summary Error Configuring HAProxy via pfSense
-
I configured a frontend record that is refering to a backend server pool with one record. The referred HAProxy Backend server pool contains a single record with the Max con value set to 2000.
In the Statistics report I can see statistics of these rules and everythings looks fine, except that gray Backend row with aggregated values contains the value 200 for Sessions Limit, while the single row above this one has the value of 2000 (as configured in the server pool record).
Testing also yields a result of 200 sessions max. What could be the problem? Do I need to restart the server pool of is there something else I am missing?
-
Haproxy automatically sets it to 10% of the sum of the maxconns of all frontends that may branch to this backend.
http://cbonte.github.io/haproxy-dconv/configuration-1.5.html#fullconnYou could add a fullconn setting to the 'Backend pass thru' to increase it if you want..
-
Thanks, I will try that!