diff options
author | thompsa <andy@fud.org.nz> | 2010-02-12 15:07:13 +1300 |
---|---|---|
committer | thompsa <andy@fud.org.nz> | 2010-02-12 15:07:13 +1300 |
commit | f14ee040839ffd2f19aba114d81bec23eda865da (patch) | |
tree | 8c69cca287a36d9630847c7e4f090a8856a4e307 /config/haproxy-dev/haproxy.inc | |
parent | 794937ee20a9bf830acf01d2abf0757c041f2c25 (diff) | |
download | pfsense-packages-f14ee040839ffd2f19aba114d81bec23eda865da.tar.gz pfsense-packages-f14ee040839ffd2f19aba114d81bec23eda865da.tar.bz2 pfsense-packages-f14ee040839ffd2f19aba114d81bec23eda865da.zip |
Commit workaround to get xmlrpc working again until I cn understand the php error better
Diffstat (limited to 'config/haproxy-dev/haproxy.inc')
-rw-r--r-- | config/haproxy-dev/haproxy.inc | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/config/haproxy-dev/haproxy.inc b/config/haproxy-dev/haproxy.inc index 07e9b07c..4b5bd42b 100644 --- a/config/haproxy-dev/haproxy.inc +++ b/config/haproxy-dev/haproxy.inc @@ -61,6 +61,33 @@ $a_acltypes[] = array('name' => 'source_ip', 'descr' => 'Source IP', function haproxy_find_acl($name) { global $a_acltypes; + /* XXX why is this broken from xmlsync? */ + if (!$a_acltypes) { + $a_acltypes = array(); + $a_acltypes[] = array('name' => 'host_starts_with', 'descr' => 'Host starts with', + 'mode' => 'http', 'syntax' => 'hdr_beg(host) -i'); + $a_acltypes[] = array('name' => 'host_ends_with', 'descr' => 'Host ends with', + 'mode' =>'http', 'syntax' => 'hdr_end(host) -i'); + $a_acltypes[] = array('name' => 'host_matches', 'descr' => 'Host matches', + 'mode' =>'http', 'syntax' => 'hdr(host) -i'); + $a_acltypes[] = array('name' => 'host_regex', 'descr' => 'Host regex', + 'mode' =>'http', 'syntax' => 'hdr_reg(host) -i'); + $a_acltypes[] = array('name' => 'host_contains', 'descr' => 'Host contains', + 'mode' => 'http', 'syntax' => 'hdr_dir(host) -i'); + $a_acltypes[] = array('name' => 'path_starts_with', 'descr' => 'Path starts with', + 'mode' => 'http', 'syntax' => 'path_beg -i'); + $a_acltypes[] = array('name' => 'path_ends_with', 'descr' => 'Path ends with', + 'mode' => 'http', 'syntax' => 'path_end -i'); + $a_acltypes[] = array('name' => 'path_matches', 'descr' => 'Path matches', + 'mode' => 'http', 'syntax' => 'path -i'); + $a_acltypes[] = array('name' => 'path_regex', 'descr' => 'Path regex', + 'mode' => 'http', 'syntax' => 'path_reg -i'); + $a_acltypes[] = array('name' => 'path_contains', 'descr' => 'Path contains', + 'mode' => 'http', 'syntax' => 'path_dir -i'); + $a_acltypes[] = array('name' => 'source_ip', 'descr' => 'Source IP', + 'mode' => '', 'syntax' => 'src'); + } + foreach ($a_acltypes as $acl) { if ($acl['name'] == $name) return $acl; |