From a014c2c43f18e57b365ecf299554b3e2abfae2a4 Mon Sep 17 00:00:00 2001
From: daniel <daniel@ispconfig3>
Date: Sun, 08 Jun 2008 10:29:54 -0400
Subject: [PATCH] Updated installer to not ask for fastcgi support. Added fastcgi support by default into the ISPConfig vhost. Copies over the fastcgi starter script into /usr/local/ispconfig/interface/bin/
---
install/update.php | 16 ----------------
1 files changed, 0 insertions(+), 16 deletions(-)
diff --git a/install/update.php b/install/update.php
index ebc7e9b..06961a0 100644
--- a/install/update.php
+++ b/install/update.php
@@ -176,22 +176,6 @@
swriteln('Updating ISPConfig');
-//** We want to check if the server is a module or cgi based php enabled server
-//** 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'] = "";
-}
-
-
//** Customise the port ISPConfig runs on
$inst->conf['apache']['vhost_port'] = $inst->free_query('ISPConfig Port', '8080');
--
Gitblit v1.9.1