新しいCentOS 6インストールがあり、ドキュメントルートに開発ファイルへのシンボリックリンクがあります。
[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/
私のhttpd.confにはこれがあります:
<Directory "/">
Options All
AllowOverride None
Order allow,deny
Allow from all
</directory>
シンボリックリンクのターゲットには、Apacheが必要なものを読み取ることができるアクセス許可があります。
[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
私も変更してSELinuxを無効にしてみました/etc/selinux/conf
:
SELINUX=disabled
しかし、私が何をしても、誰かがそのリンクにアクセスしようとするとhttp://localhost/refresh-app/
、403 FORBIDDENエラーページが表示され、これは次のように書かれてい/var/log/httpd/error_log
ます:
Symbolic link not allowed or link target not accessible
Apacheがシンボリックリンクのターゲットにアクセスできないのはなぜですか?