From 6a95c89ed619c3c261a09a17f43a31dd8cc4047e Mon Sep 17 00:00:00 2001
From: daniel <daniel@ispconfig3>
Date: Fri, 06 Jun 2008 14:24:13 -0400
Subject: [PATCH] Added initial jailkit chroot feature as a plugin Added chroot options to the shell user form Added jailkit ini settings Added ini settings for fastcgi Fixed bug with web delete not removing parent web user unless that was intentional ? Changed name of shell user plugin so plugin order calls this first Started a change to the update script.

---
 install/update.php |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/install/update.php b/install/update.php
index 3c8c936..ebc7e9b 100644
--- a/install/update.php
+++ b/install/update.php
@@ -180,12 +180,15 @@
 //** TODO: Don't always ask for this somehow ? 
 $fast_cgi = $inst->simple_query('CGI PHP Enabled Server?', array('yes','no'),'no');
 
+
 if($fast_cgi == 'yes') {
 	 $alias = $inst->free_query('Script Alias', '/php/');
 	 $path = $inst->free_query('Script Alias Path', '/path/to/cgi/bin');
 	 $inst->conf['apache']['vhost_cgi_alias'] = sprintf('ScriptAlias %s %s', $alias, $path);
+	 $inst->conf['apache']['vhost_cgi_alias_path'] = $path;
 } else {
 	 $inst->conf['apache']['vhost_cgi_alias'] = "";
+	 $inst->conf['apache']['vhost_cgi_alias_path'] = "";
 }
 
 

--
Gitblit v1.9.1