安装 RoundCubeMail - 您无权访问 /roundcubemail/installer/

安装 RoundCubeMail - 您无权访问 /roundcubemail/installer/

我已经在 CentOS7 上安装了 RoundCubeMail(差不多)。我设置了阿帕奇/2.4.6服务器,所以当我导航到 localhost(或 127.0.0.1)时,我可以看到 Apache 的启动/测试页面(测试 1 2 3 ...)。

db.inc.php我已经在 /var/www/html/roundcube 中安装了 roundcube。我在和文件中进行了所有配置main.inc.php,我的 roundcube 根目录具有 755 权限。

我的 Apache 服务器运行正常...但是当我访问http://localhost/roundcubemail/installer我遇到了 403 禁止错误。

我让该目录对 Apache 可写:

setenforce 0
sudo chown -R apache /var/www/html
sudo chmod 755 -R /var/www/html

有什么想法吗?可能出了什么问题?

这是我的 Apache 配置文件:

ServerRoot "/etc/httpd"
Listen *:80

Include conf.modules.d/*.conf

User apache
Group apache

ServerAdmin root@localhost

<Directory />
    AllowOverride none
    Require all denied
</Directory>

DocumentRoot "/var/www/html"

<Directory "/var/www">
    AllowOverride None
    # Allow open access:
    #Require all granted
allow from all
</Directory>

# Further relax access to the default document root:
<Directory "/var/www/html">
    Options Indexes FollowSymLinks
    AllowOverride None
    Allow from all
    # Require all granted
</Directory>

<Directory "/var/www/html/roundcubemail">
     Options Indexes FollowSymLinks
    AllowOverride None
    Allow from all
</Directory>

<IfModule dir_module>
    DirectoryIndex index.html
</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>
      # You need to enable mod_logio.c to use %I and %O
      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>
    ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
</IfModule>

<Directory "/var/www/cgi-bin">
    AllowOverride None
    Options None
    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

答案1

访问控制是指控制对任何资源的访问的任何手段。

参考:访问控制 - Apache HTTP 服务器版本 2.4


确保您/etc/httpd/conf/httpd.conf包含以下内容:

<Directory "/var/www/html">
  Require all granted
</Directory>

另外,请看以下内容:

从 2.2 升级到 2.4 - Apache HTTP 服务器版本 2.5

答案2

这可能是由 apache 服务器设置引起的 因为 Brian 的服务器目录索引为

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

但 Roundcube 需要 index.php 被服务器识别才能进行索引。这就是它被拒绝的原因。

相关内容