Hello,
I've got following problem:
You don't have permission to access / on this server.
Apache/2.2.15 (Oracle) Server at xxx.xxx.xxx.xxx Port 80
I've tried: chmod xxx /var/www/site where xxx is on of these permissions: 777, 755, 655 However it didn't help. I've set user/group for that folder root:root. Similar configuration i've got for other virtual host and that works there but not for phalcon project. I can access to files that are direcrly in that folder, for example /info.php and got php configuration information.
My .htaccess in /var/www/site is:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>