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

Fixed a syntax error in apps vhost configuration.

parent df7ff21a
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
AllowOverride AuthConfig Indexes Limit Options FileInfo AllowOverride AuthConfig Indexes Limit Options FileInfo
AddHandler fcgid-script .php AddHandler fcgid-script .php
FCGIWrapper {website_basedir}/php-fcgi-scripts/apps/.php-fcgi-starter .php FCGIWrapper {website_basedir}/php-fcgi-scripts/apps/.php-fcgi-starter .php
FcgidBusyTimeout 3600 # FcgidBusyTimeout 3600
Order allow,deny Order allow,deny
Allow from all Allow from all
</Directory> </Directory>
......
...@@ -11,6 +11,10 @@ ...@@ -11,6 +11,10 @@
ServerAdmin webmaster@localhost ServerAdmin webmaster@localhost
{apps_vhost_servername} {apps_vhost_servername}
<FilesMatch "\.ph(p3?|tml)$">
SetHandler None
</FilesMatch>
<IfModule mod_fcgid.c> <IfModule mod_fcgid.c>
DocumentRoot {apps_vhost_dir} DocumentRoot {apps_vhost_dir}
SuexecUserGroup ispapps ispapps SuexecUserGroup ispapps ispapps
......
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