c9d9cb0b92fd705bd31816de248b9d2c8501ee89
[freeside.git] / rt / t / data / configs / apache2.2+fastcgi.conf
1 ServerRoot %%SERVER_ROOT%%
2 PidFile %%PID_FILE%%
3 LockFile %%LOCK_FILE%%
4 ServerAdmin root@localhost
5
6 %%LOAD_MODULES%%
7
8 FastCgiIpcDir %%TMP_DIR%%
9
10 <IfModule !mpm_netware_module>
11 <IfModule !mpm_winnt_module>
12 User www
13 Group www
14 </IfModule>
15 </IfModule>
16
17 Listen %%LISTEN%%
18
19 ErrorLog "%%LOG_FILE%%"
20 LogLevel debug
21
22 <Directory />
23     Options FollowSymLinks
24     AllowOverride None
25     Order deny,allow
26     Deny from all
27 </Directory>
28
29 AddDefaultCharset UTF-8
30
31 FastCgiServer %%RT_BIN_PATH%%/mason_handler.fcgi -processes 1 -idle-timeout 180 -initial-env RT_SITE_CONFIG=%%RT_SITE_CONFIG%%
32
33 Alias /NoAuth/images/ %%DOCUMENT_ROOT%%/NoAuth/images/
34 ScriptAlias / %%RT_BIN_PATH%%/mason_handler.fcgi/
35
36 DocumentRoot "%%DOCUMENT_ROOT%%"
37 <Location />
38     Order allow,deny
39     Allow from all
40
41     Options +ExecCGI
42     AddHandler fastcgi-script fcgi
43 </Location>
44