aboutsummaryrefslogtreecommitdiffstats
path: root/config/varnish64/varnish_backends.xml
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2010-04-27 21:48:44 -0400
committerScott Ullrich <sullrich@pfsense.org>2010-04-27 21:48:44 -0400
commitd998c5cf12d1bfa4da7b3e0c21555b230d989bca (patch)
tree84bfe289fbb18557018e4d198268c510b9fb2a55 /config/varnish64/varnish_backends.xml
parent5781f08636ae29e66ea9591616b95f6a1c080f36 (diff)
downloadpfsense-packages-d998c5cf12d1bfa4da7b3e0c21555b230d989bca.tar.gz
pfsense-packages-d998c5cf12d1bfa4da7b3e0c21555b230d989bca.tar.bz2
pfsense-packages-d998c5cf12d1bfa4da7b3e0c21555b230d989bca.zip
Add input validation for the Backends form
Diffstat (limited to 'config/varnish64/varnish_backends.xml')
-rw-r--r--config/varnish64/varnish_backends.xml19
1 files changed, 12 insertions, 7 deletions
diff --git a/config/varnish64/varnish_backends.xml b/config/varnish64/varnish_backends.xml
index 65a03499..68736c44 100644
--- a/config/varnish64/varnish_backends.xml
+++ b/config/varnish64/varnish_backends.xml
@@ -109,22 +109,24 @@
</adddeleteeditpagefields>
<fields>
<field>
- <fielddescr>IPAddress</fielddescr>
- <fieldname>ipaddress</fieldname>
- <description>Enter the IP Address of the backend web server.</description>
- <type>input</type>
- </field>
- <field>
<fielddescr>Backend name</fielddescr>
<fieldname>backendname</fieldname>
<description>Enter the name of this backend web server.</description>
<type>input</type>
+ <validate>^[a-z0-9.|-]+$</validate>
+ </field>
+ <field>
+ <fielddescr>IPAddress</fielddescr>
+ <fieldname>ipaddress</fieldname>
+ <description>Enter the IP Address of the backend web server.</description>
+ <type>input</type>
</field>
<field>
<fielddescr>Port</fielddescr>
<fieldname>port</fieldname>
<description>Enter the TCP/IP port of the webserver.</description>
<type>input</type>
+ <validate>^[0-9]+$</validate>
</field>
<field>
<fielddescr>First byte timeout</fielddescr>
@@ -140,7 +142,7 @@
</field>
<field>
<fielddescr>Probe URL</fielddescr>
- <fieldname>probe_url</fieldname>
+ <fieldname>probe_interval</fieldname>
<description>Enter the URL that varnish will use to ensure that this backend is healthy.</description>
<type>input</type>
</field>
@@ -196,4 +198,7 @@
sync_package_varnish();
varnish_start();
</custom_php_resync_config_command>
+ <custom_php_validation_command>
+ varnish_backends_post_validate($_POST, &amp;$input_errors);
+ </custom_php_validation_command>
</packagegui> \ No newline at end of file