[Apache] Erreur 403 sur public_html
Bonjour
Je veux faire en sorte que je puisse publier des pages html sur un répertoire public_html. J'ai donc éditer mon httpd.conf de cette manière :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<IfModule mod_userdir.c>
UserDir public_html
</IfModule>
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
<Directory /home/*/public_html>
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS>
Order deny,allow
Deny from all
</LimitExcept>
</Directory> |
De même, dans mon /home/gldavid/public_html, j'ai fait en sorte que mes pages soit lisibles en faisant :
Code:
1 2
|
chmod 755 -R /home/gldavid/public_html |
Mais malgré ceci, j'ai toujours une erreur 403 avec permission denied 8O
Diantre, qu'ai-je bien pû oublier ?
Merci d'avance de vos réponses.
@++