From cabd6f6205756a51064fb856aca2ed94d28b1cf7 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Fri, 12 Sep 2008 11:31:19 -0400
Subject: [PATCH] Disabled suphp_UserGroup directive by default to make the setup compatible with the suphp compile options from most linux distributions. If you want some extra security, enable this directive again and recompile mod_suphp with the the option --with-setid-mode=paranoid

---
 interface/web/admin/lib/module.conf.php |   21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/interface/web/admin/lib/module.conf.php b/interface/web/admin/lib/module.conf.php
index b6d4384..4a73065 100644
--- a/interface/web/admin/lib/module.conf.php
+++ b/interface/web/admin/lib/module.conf.php
@@ -50,6 +50,11 @@
 $items[] = array( 'title' 	=> 'Edit server',
 				  'target' 	=> 'content',
 				  'link'	=> 'admin/server_list.php');
+
+$items[] = array( 'title' 	=> 'Server Config',
+				  'target' 	=> 'content',
+				  'link'	=> 'admin/server_config_list.php');
+
 /*
 $items[] = array( 'title' 	=> 'Add Server IP',
 				  'target' 	=> 'content',
@@ -61,6 +66,18 @@
 
 
 $module['nav'][] = array(	'title'	=> 'Servers',
+							'open' 	=> 1,
+							'items'	=> $items);
+// cleanup
+unset($items);
+
+
+$items[] = array( 'title' 	=> 'Firewall',
+				  'target' 	=> 'content',
+				  'link'	=> 'admin/firewall_list.php');				  
+
+
+$module['nav'][] = array(	'title'	=> 'Firewall',
 							'open' 	=> 1,
 							'items'	=> $items);
 
@@ -112,7 +129,7 @@
 							'items'	=> $items);
 
 
-// aufr�umen
+// cleanup
 unset($items);
 
 /*
@@ -130,7 +147,7 @@
 							'items'	=> $items);
 
 
-// aufr�umen
+// cleanup
 unset($items);
 */
 

--
Gitblit v1.9.1