aboutsummaryrefslogtreecommitdiffstats
path: root/config/haproxy
diff options
context:
space:
mode:
authorsullrich <sullrich@pfsense.org>2009-12-15 17:35:29 -0500
committersullrich <sullrich@pfsense.org>2009-12-15 17:35:29 -0500
commit9fafe1620cd4339515aa996aa382f031aded341f (patch)
tree229f50b23fdf1dc38cbf2da2aa6e217fddd0a7a8 /config/haproxy
parent54d4d3963bc771fee08b1b4ed218290af6ed1dd2 (diff)
downloadpfsense-packages-9fafe1620cd4339515aa996aa382f031aded341f.tar.gz
pfsense-packages-9fafe1620cd4339515aa996aa382f031aded341f.tar.bz2
pfsense-packages-9fafe1620cd4339515aa996aa382f031aded341f.zip
Do not duplicate mode directive and add otiuon ssl-hello-chk for https type
Diffstat (limited to 'config/haproxy')
-rw-r--r--config/haproxy/haproxy.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/haproxy/haproxy.inc b/config/haproxy/haproxy.inc
index 59350259..65d09521 100644
--- a/config/haproxy/haproxy.inc
+++ b/config/haproxy/haproxy.inc
@@ -149,7 +149,7 @@ function haproxy_configure() {
fwrite ($fd, "{$listenip}");
// https is an alias for tcp for clarity purpouses
- if($backend['type'] == "https")
+ if(strtolower($backend['type']) == "https")
$backend_type = "tcp";
else
$backend_type = $backend['type'];
@@ -160,15 +160,15 @@ function haproxy_configure() {
fwrite ($fd, "\toption\t\t\thttpclose\n");
fwrite ($fd, "\toption\t\t\tforwardfor\n");
+ if($backend['type'] == "https")
+ fwrite ($fd, "\toption\t\t\tssl-hello-chk\n");
+
if($backend['max_connections'])
fwrite ($fd, "\tmaxconn\t\t\t" . $backend['max_connections'] . "\n");
if($backend['client_timeout'])
fwrite ($fd, "\tclitimeout\t\t" . $backend['client_timeout'] . "\n");
- if($backend['type'])
- fwrite ($fd, "\tmode\t\t\t" . $backend['type'] . "\n");
-
if($backend['balance'])
fwrite ($fd, "\tbalance\t\t\t" . $backend['balance'] . "\n");