В apache2 отказано в разрешении на обновление до ubuntu 14.04
Я обновил свою ОС с 12.04 до ubuntu 14.04, и когда я пытаюсь перезагрузить свой проект Symfony2, я получаю эту ошибку:
You don't have permission to access /app_dev.php/ on this server.
вот мой файл apache2:
<VirtualHost *:80>
ServerName s**a
ServerAlias d**n
# Indexes + Directory Root.
DirectoryIndex index.html index.php
DocumentRoot /home/****/
<Directory />
Options -Indexes +FollowSymLinks
Require all granted
</Directory>
<DirectoryMatch .*\.svn/.*>
Deny From All
</DirectoryMatch>
# Logfiles
</VirtualHost>
PS : it works well before the update !
1 ответ
Эта проблема связана с обновлением с Apache
2,2 до 2,4 - см. Документ
У меня была похожая проблема, и я изменил свой VirtualHost
Конфигурация что-то вроде:
<VirtualHost>
<Directory /home/developer/Projects/sf2/web/>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>