aboutsummaryrefslogtreecommitdiffstats
path: root/config/haproxy/haproxy_servers.php
diff options
context:
space:
mode:
authorsullrich <sullrich@pfsense.org>2009-12-11 21:21:29 -0500
committersullrich <sullrich@pfsense.org>2009-12-11 21:21:37 -0500
commitb7f14b04290fa64b6fd26fe1c2bc4c213b4bbecf (patch)
tree924d3bd1cde956d2f6e66c272f65629a12c93145 /config/haproxy/haproxy_servers.php
parent9b9a08d5569e2d4924a37f02f56b7f7660a62855 (diff)
downloadpfsense-packages-b7f14b04290fa64b6fd26fe1c2bc4c213b4bbecf.tar.gz
pfsense-packages-b7f14b04290fa64b6fd26fe1c2bc4c213b4bbecf.tar.bz2
pfsense-packages-b7f14b04290fa64b6fd26fe1c2bc4c213b4bbecf.zip
Overhaul haproxy package. Rename backends to frontends. Add rowhelper to the server edit screen for backend selection eliminating quite a number of needed configuration entries for common hosting items.
Diffstat (limited to 'config/haproxy/haproxy_servers.php')
-rwxr-xr-xconfig/haproxy/haproxy_servers.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/haproxy/haproxy_servers.php b/config/haproxy/haproxy_servers.php
index 4dffadca..3bf4eac2 100755
--- a/config/haproxy/haproxy_servers.php
+++ b/config/haproxy/haproxy_servers.php
@@ -68,7 +68,7 @@ $pfSversion = str_replace("\n", "", file_get_contents("/etc/version"));
if(strstr($pfSversion, "1.2"))
$one_two = true;
-$pgtitle = "Services: HAProxy: Backends";
+$pgtitle = "Services: HAProxy: Servers";
include("head.inc");
?>
@@ -89,7 +89,7 @@ include("head.inc");
/* active tabs */
$tab_array = array();
$tab_array[] = array("Settings", false, "haproxy_global.php");
- $tab_array[] = array("Frontends/Backends", false, "haproxy_backends.php");
+ $tab_array[] = array("Frontends", false, "haproxy_frontends.php");
$tab_array[] = array("Servers", true, "haproxy_servers.php");
display_top_tabs($tab_array);
?>