Bonjour,

Je suis sur Fedora et je tente d'installer Symfony2 pour la première fois, je n'arrive pas à accéder à la page web de symfony => erreur 403 You don't have permission to access / on this server

J'ai pourtant suivi un tutoriel trouvé sur un autre site, mais je suis bloqué lorsqu'il s'agit d'afficher la page :

Voici mon Vhost sur httpdconf :
<VirtualHost 127.0.0.1:80>
ServerName dev.monprojet.com
DocumentRoot /home/loulou/Public/wmd/web
<Directory "/home/loulou/Public/wmd/web">
DirectoryIndex app.php
Options -Indexes FollowSymLinks SymLinksifOwnerMatch
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
Mon fichier hosts :
127.0.0.1 localhost.localdomain localhost
::1 localhost6.localdomain6 localhost6
127.0.0.1 dev.monprojet.com

Concernant les droits, j'ai fais chmod -R 777 app/cache app/logs

Qu'en pensez vous ?

Cordialement.