I have apache with the following 000-default file for my app
<VirtualHost *:80>
ServerName www.yourhost.com
DocumentRoot /somewhere/public
<Directory /somewhere/public>
AllowOverride all
Options -MultiViews
</Directory>
</VirtualHost>
I've restarted apache and now I get You don't have permission to access / on this server.
when browsing to it.
Does anyone know what permissions to my app or if I have to add the app folder to the wheel group or something like that?