3

Я использую Apache v2.4 для размещения личного веб-сайта на моем офисном Mac Mini под управлением OS X 10.10. Базовый сайт работает нормально, но выдает ошибку запрещенного доступа 403, когда я добавляю символическую ссылку в каталог (в папке ~/anil/Documents/).

Я включил FollowSymLinks в /etc/apache2/httpd.conf, вот так

DocumentRoot "/Users/anil/Sites"
<Directory "/Users/anil/Sites">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options All MultiViews
    MultiviewsMatch Any

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride All

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>

Вот мой /etc/apache2/users/anil.conf

<Directory "/Users/anil/Sites/">
    AddLanguage en .en
    LanguagePriority en fr de
    ForceLanguagePriority Fallback
    Options Indexes MultiViews FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from localhost
    Require all granted
</Directory>

Я также проверил, что все каталоги в целевом каталоге symlink имеют разрешение на выполнение, но безрезультатно; чтобы попытаться исключить это, я создал символическую ссылку для фиктивного файла в каталоге на один уровень ниже в корневом каталоге сайта, но все еще с той же ошибкой.

$ ls -lrt
total 24
-rw-r--r--+ 1 anil  staff   49 Feb 24 08:15 somefile
lrwxr-xr-x  1 anil  staff   29 Feb 24 09:13 Corpus -> /Users/anil/Documents/Corpus
drwxr-xr-x  3 anil  staff  102 Feb 25 07:37 tmp_folder
lrwxr-xr-x  1 anil  staff   20 Feb 25 07:38 blankfile -> tmp_folder/blankfile

Вот соответствующий вывод из apache error_log:

[Thu Feb 25 13:51:14.465824 2016] [core:error] [pid 42861] [client x.x.x.x:p] AH00032: Symbolic link not allowed or link target not accessible: /Users/anil/Sites/blankfile
[Thu Feb 25 13:51:14.465925 2016] [core:error] [pid 42861] [client x.x.x.x:y] AH00037: Symbolic link not allowed or link target not accessible: /Users/anil/Sites/Corpus

0