Docker - Ubuntu + Apache符号链接权限错误

时间:2016-03-14 14:44:26

标签: apache ubuntu docker symlink

我使用我的Ubuntu docker VM并将/var/www/目录作为卷连接。

运行容器时,我将卷设置为本地~/Sites目录。

在我的Sites目录中,我有许多指向其他目录的符号链接。

我在配置文件中允许使用符号链接:

<VirtualHost *:80>
    # The ServerName directive sets the request scheme, hostname and port that
    # the server uses to identify itself. This is used when creating
    # redirection URLs. In the context of virtual hosts, the ServerName
    # specifies what hostname must appear in the request's Host: header to
    # match this virtual host. For the default virtual host (this file) this
    # value is not decisive as it is used as a last resort host regardless.
    # However, you must set it for any further virtual host explicitly.
    #ServerName www.example.com

    ServerAdmin webmaster@localhost
    DocumentRoot /var/www

    <Directory /var/www>
        Options FollowSymLinks
        AllowOverride All
        Require all granted
    </Directory>

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual host. For example the
    # following line enables the CGI configuration for this host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

但是我一直收到权限错误,并且apache日志表明不允许使用符号链接。

我通过www-data用户选择/ var / www -R,但我认为它对符号链接下的目录没有影响......

如何让它们发挥作用?

0 个答案:

没有答案