Apache 2.4 和 Phusion Passenger 生成 403 错误

Apache 2.4 和 Phusion Passenger 生成 403 错误

我正在尝试设置一个 Rails 应用程序(Fedena 项目) 的服务器配置。我使用下面的虚拟主机配置。当我访问 IP/域时,我得到 403。此服务器上只有一个用户,即 root。

谷歌云-Ubuntu 14.04

  • Rails 2.3.5
  • Ruby 1.8.7
  • Rubygems 1.3.7
  • Apache 2.4
  • Phusion Passenger 版本 5.0.2

/etc/apache2/sites-available/fedena.conf

<VirtualHost *:80>
        ServerName enomy.com
        ServerAlias www.enomy.com
        ServerAdmin webmaster@localhost
        DocumentRoot /srv/fedena/public
        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
        <Directory "/srv/fedena/public">
                Options FollowSymLinks
                AllowOverride None
                Order allow,deny
                Allow from all
                Options -MultiViews
                Require all granted
        </Directory>
        RailsEnv development
        RailsBaseURI /srv/fedena </VirtualHost>

尾部-f / var / log / apache2 / *

==> /var/log/apache2/error.log <== [2015 年 3 月 11 日星期三 22:00:01.715324] [autoindex:error] [pid 31091:tid 140200239867648] [client 41.203.67.171:4958] AH01276:无法提供目录 /srv/fedena/public/:未找到匹配的 DirectoryIndex(index.html、index.cgi、index.pl、index.php、index.xhtml、index.htm),并且 Options 指令禁止服务器生成的目录索引

==> /var/log/apache2/access.log <== 41.203.67.171 - - [11/Mar/2015:22:00:01 +0000] "GET / HTTP/1.1" 403 492 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML,如 Gecko) Chrome/40.0.2214.111 Safari/537.36"

任何帮助都将受到赞赏。

相关内容