September 17, 2013

apache 2.4でバーチャルホストする際の注意(Ubuntu)

以下二点、メモです。

1.
/etc/apache2/sites-available/ に作成するファイルに".conf"の拡張子を付けないとa2ensiteで反応しませんでした。


2.
"Require all granted"を書かないとforbiddenを解決できませんでした。
<VirtualHost *:80>
    ServerName xxx.yyy.com
    DocumentRoot /xxx/yyy/public
    <Directory '/xxx/yyy/public'>
        AllowOverride all
        Require all granted
    </Directory>
</VirtualHost>

No comments:

Post a Comment