Fix Vhost (Apache2.4)

* fixed fastcgi configuration(changed to be compatible with < 2.4.10)
* fixed directory permissions

Change-Id: I789d67947b33d05409460c4b26e8c6a595d58694
This commit is contained in:
Sebastian Marcet 2016-03-31 00:36:17 -03:00
parent b764ef6fd2
commit 13c1777dc0
1 changed files with 3 additions and 5 deletions

View File

@ -38,14 +38,12 @@
DocumentRoot <%= @docroot %>
<Directory <%= @docroot %>/>
Order allow,deny
Allow from all
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
</Directory>
<IfModule mod_proxy_fcgi.c>
<FilesMatch \.php$>
SetHandler "proxy:fcgi://127.0.0.1:9000"
</FilesMatch>
ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:9000<%= @docroot %>/$1
</IfModule>
<IfModule mod_fastcgi.c>