Details
-
Bug
-
Resolution: Fixed
-
Critical
-
5.0.0rc1
-
None
Description
Page: http://doc.ez.no/eZ-Publish/Technical-manual/5.x/Installation/Virtual-host-setup
Reported by Paul Borgermans:
Just a short note on the install docs for ez publish 5, the Virtual host example should be adapted a bit
From:
<Directory [PATH_TO_EZPUBLISH]/web> Options FollowSymLinks AllowOverride None </Directory>
To:
<Directory [PATH_TO_EZPUBLISH]/web> Options FollowSymLinks AllowOverride None # Depending on your global Apache settings, you may need uncomment and adapt #Allow from 127.0.0.1 </Directory>
and from:
<IfModule mod_rewrite.c>
# Uncomment in FastCGI mode, to get basic auth working.
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# v1 rest API is on Legacy
RewriteRule ^/api/[^/]+/v1/ /index_rest.php [L]
To:
<IfModule mod_rewrite.c>
RewriteEngine On
# Uncomment in FastCGI mode, to get basic auth working.
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# v1 rest API is on Legacy
RewriteRule ^/api/[^/]+/v1/ /index_rest.php [L]