Skip to content
Snippets Groups Projects
Commit 896465f4 authored by Till Brehm's avatar Till Brehm
Browse files

Changed order of mod_php and fcgi configuration in apps vhost.

parent a4e883ac
No related branches found
No related tags found
2 merge requests!46Master,!17Stable 3.0.5
......@@ -15,25 +15,25 @@
SetHandler None
</FilesMatch>
<IfModule mod_fcgid.c>
<IfModule mod_php5.c>
DocumentRoot {apps_vhost_dir}
SuexecUserGroup ispapps ispapps
AddType application/x-httpd-php .php
<Directory {apps_vhost_dir}>
Options Indexes FollowSymLinks MultiViews +ExecCGI
AllowOverride AuthConfig Indexes Limit Options FileInfo
AddHandler fcgid-script .php
FCGIWrapper {apps_vhost_basedir}/php-fcgi-scripts/apps/.php-fcgi-starter .php
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</IfModule>
<IfModule mod_php5.c>
<IfModule mod_fcgid.c>
DocumentRoot {apps_vhost_dir}
AddType application/x-httpd-php .php
SuexecUserGroup ispapps ispapps
<Directory {apps_vhost_dir}>
Options FollowSymLinks
AllowOverride None
Options Indexes FollowSymLinks MultiViews +ExecCGI
AllowOverride AuthConfig Indexes Limit Options FileInfo
AddHandler fcgid-script .php
FCGIWrapper {apps_vhost_basedir}/php-fcgi-scripts/apps/.php-fcgi-starter .php
Order allow,deny
Allow from all
</Directory>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment