aboutsummaryrefslogtreecommitdiffstats
path: root/config/haproxy/haproxy.inc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2009-12-22 15:31:09 -0500
committerScott Ullrich <sullrich@pfsense.org>2009-12-22 15:31:09 -0500
commit7549eb85d206e9283ce952cdef76ff2ec11ee6cc (patch)
tree88576b1b65f32d920f5bda7026676e0bf542f818 /config/haproxy/haproxy.inc
parent5c479d1ebd0a2dcb877c2b3db6570b0e7d92aa9c (diff)
downloadpfsense-packages-7549eb85d206e9283ce952cdef76ff2ec11ee6cc.tar.gz
pfsense-packages-7549eb85d206e9283ce952cdef76ff2ec11ee6cc.tar.bz2
pfsense-packages-7549eb85d206e9283ce952cdef76ff2ec11ee6cc.zip
Add advanced pass thru box for frontend edit screen
Diffstat (limited to 'config/haproxy/haproxy.inc')
-rw-r--r--config/haproxy/haproxy.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/config/haproxy/haproxy.inc b/config/haproxy/haproxy.inc
index a14a4fd8..377d440d 100644
--- a/config/haproxy/haproxy.inc
+++ b/config/haproxy/haproxy.inc
@@ -151,6 +151,10 @@ function haproxy_configure() {
fwrite ($fd, "{$backendinfo}");
fwrite ($fd, "{$listenip}");
+ // Advanced pass trhu
+ if($backend['advanced'])
+ fwrite ($fd, "{$backend['advanced']}");
+
// https is an alias for tcp for clarity purpouses
if(strtolower($backend['type']) == "https") {
$backend_type = "tcp";