httpd 2.4 使用别名时返回禁止消息

httpd 2.4 使用别名时返回禁止消息

作为显示实时日志文件的一部分,我设法在 Fedora 19 上设置和部署了一个 httpd 服务器。为了访问万维网文件夹,我创建了别名,这样当测试附加到地址后,测试文件夹在别名中被引用。我按照官方手册 并且据我所知别名已正确配置。

当我尝试访问万维网文件夹,浏览器返回

错误信息

我创建了两个示例文件夹,分别命名为测试变量内部和外部万维网用于测试。如果别名指的是测试变量文件夹里面万维网,内容已传递,但如果引用外部文件夹则不会传递。我希望这可以解释语法没有错误,并且这是某种权限错误。

当前配置(httpd.conf)

ServerRoot "/etc/httpd"
Listen 80
Include conf.modules.d/*.conf`

User apache
Group apache

ServerAdmin root@localhost

<Directory />
    AllowOverride none
    Require local
    Require all granted
</Directory>

DocumentRoot "/var/www/html"

<Directory "/var/www">
    AllowOverride None
    Require local
    Require all granted
</Directory>

<Directory "/var/www/html">
    Options Indexes FollowSymLinks
    AllowOverride None
    Require local
    Require all granted
</Directory>

<IfModule dir_module>
    DirectoryIndex index.html index.php
</IfModule>

<Files ".ht*">
    Require all denied
</Files>

ErrorLog "logs/error_log"

LogLevel warn

<IfModule log_config_module>
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    CustomLog "logs/access_log" combined
</IfModule>

<IfModule alias_module>
    Alias /test "/var/testvar"
    Alias /test2 "/var/www/testvar"
    ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
</IfModule>

<Directory "/var/testvar">
    AllowOverride None
    Options All
    Require local
    Require all granted
</Directory>

<Directory "/var/www/testvar">
    AllowOverride None
    Options All
    Require local
    Require all granted
</Directory>

<Directory "/var/www/cgi-bin">
    AllowOverride None
    Options None
    Require local
    Require all granted
</Directory>

<IfModule mime_module>
    TypesConfig /etc/mime.types
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
</IfModule>

AddDefaultCharset UTF-8

<IfModule mime_magic_module>
  MIMEMagicFile conf/magic
</IfModule>

EnableSendfile on

IncludeOptional conf.d/*.conf

我应该怎么做才能使文件夹之外万维网文件夹是否可供我的项目访问?由于我的最终目标是访问 httpd 日志,这种方法是否足够好?

相关内容