Eu tenho uma nova instalação do CentOS 6, que possui um link simbólico na raiz do documento para meus arquivos de desenvolvimento:
[root@localhost html]# ls -l
total 4
-rwxrwxrwx. 1 root root 0 Sep 18 20:16 index.html
-rwxrwxrwx. 1 root root 17 Sep 18 20:16 index.php
lrwxrwxrwx. 1 root root 24 Sep 18 20:19 refresh-app -> /home/billy/refresh-app/
Meu httpd.conf tem isso:
<Directory "/">
Options All
AllowOverride None
Order allow,deny
Allow from all
</directory>
O destino do link simbólico tem permissões que devem permitir que o apache leia o que quiser:
[root@localhost billy]# ls -l
total 40 (Some entries were omitted because the list was too long
drwxr-xr-x. 7 billy billy 4096 Sep 18 20:03 refresh-app
Eu também tentei desativar o SELinux alterando /etc/selinux/conf
:
SELINUX=disabled
No entanto, não importa o que eu faça, quando alguém tenta acessar esse link, http://localhost/refresh-app/
recebo uma página de erro 403 FORBIDDEN e isso está escrito em /var/log/httpd/error_log
:
Symbolic link not allowed or link target not accessible
Por que o Apache não pode acessar o destino do link simbólico?