Skip to content

Commit 896465f

Browse files
author
Till Brehm
committed
Changed order of mod_php and fcgi configuration in apps vhost.
1 parent a4e883a commit 896465f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

server/conf/apache_apps.vhost.master

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@
1515
SetHandler None
1616
</FilesMatch>
1717

18-
<IfModule mod_fcgid.c>
18+
<IfModule mod_php5.c>
1919
DocumentRoot {apps_vhost_dir}
20-
SuexecUserGroup ispapps ispapps
20+
AddType application/x-httpd-php .php
2121
<Directory {apps_vhost_dir}>
22-
Options Indexes FollowSymLinks MultiViews +ExecCGI
23-
AllowOverride AuthConfig Indexes Limit Options FileInfo
24-
AddHandler fcgid-script .php
25-
FCGIWrapper {apps_vhost_basedir}/php-fcgi-scripts/apps/.php-fcgi-starter .php
22+
Options FollowSymLinks
23+
AllowOverride None
2624
Order allow,deny
2725
Allow from all
2826
</Directory>
2927
</IfModule>
3028

31-
<IfModule mod_php5.c>
29+
<IfModule mod_fcgid.c>
3230
DocumentRoot {apps_vhost_dir}
33-
AddType application/x-httpd-php .php
31+
SuexecUserGroup ispapps ispapps
3432
<Directory {apps_vhost_dir}>
35-
Options FollowSymLinks
36-
AllowOverride None
33+
Options Indexes FollowSymLinks MultiViews +ExecCGI
34+
AllowOverride AuthConfig Indexes Limit Options FileInfo
35+
AddHandler fcgid-script .php
36+
FCGIWrapper {apps_vhost_basedir}/php-fcgi-scripts/apps/.php-fcgi-starter .php
3737
Order allow,deny
3838
Allow from all
3939
</Directory>

0 commit comments

Comments
 (0)