summaryrefslogtreecommitdiff
path: root/rt/t/data/configs/apache2.2+fastcgi.conf
diff options
context:
space:
mode:
Diffstat (limited to 'rt/t/data/configs/apache2.2+fastcgi.conf')
-rw-r--r--rt/t/data/configs/apache2.2+fastcgi.conf17
1 files changed, 11 insertions, 6 deletions
diff --git a/rt/t/data/configs/apache2.2+fastcgi.conf b/rt/t/data/configs/apache2.2+fastcgi.conf
index 4033479bb..a4016eb42 100644
--- a/rt/t/data/configs/apache2.2+fastcgi.conf
+++ b/rt/t/data/configs/apache2.2+fastcgi.conf
@@ -5,12 +5,10 @@ ServerAdmin root@localhost
%%LOAD_MODULES%%
-FastCgiIpcDir %%TMP_DIR%%
-
<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_module>
-User www-data
-Group www-data
+User freeside
+Group freeside
</IfModule>
</IfModule>
@@ -28,16 +26,23 @@ LogLevel debug
AddDefaultCharset UTF-8
-FastCgiServer %%RT_BIN_PATH%%/mason_handler.fcgi -processes 1 -idle-timeout 180 -initial-env RT_SITE_CONFIG=%%RT_SITE_CONFIG%%
+FastCgiServer %%RT_SBIN_PATH%%/rt-server.fcgi \
+ -socket %%TMP_DIR%%/socket \
+ -processes 1 \
+ -idle-timeout 180 \
+ -initial-env RT_SITE_CONFIG=%%RT_SITE_CONFIG%% \
+ -initial-env RT_TESTING=1
Alias /NoAuth/images/ %%DOCUMENT_ROOT%%/NoAuth/images/
-ScriptAlias / %%RT_BIN_PATH%%/mason_handler.fcgi/
+ScriptAlias / %%RT_SBIN_PATH%%/rt-server.fcgi/
DocumentRoot "%%DOCUMENT_ROOT%%"
<Location />
Order allow,deny
Allow from all
+%%BASIC_AUTH%%
+
Options +ExecCGI
AddHandler fastcgi-script fcgi
</Location>