Apache 2.4 e Phusion Passenger gerando 403 Error

1

Estou tentando configurar um aplicativo Rails ( Project Fedena ) na seguinte configuração do servidor. Eu estou usando a configuração do host virtual abaixo. Eu recebo um 403 quando visito o IP / Domínio. Há apenas um usuário neste servidor, root.

Google Cloud - Ubuntu 14.04

  • Rails 2.3.5
  • Ruby 1.8.7
  • Rubygems 1.3.7
  • Apache 2.4
  • Phusion Passenger versão 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>

tail -f / var / log / apache2 / *

==> /var/log/apache2/error.log <== [Wed Mar 11 22:00:01.715324 2015] [autoindex:error] [pid 31091:tid 140200239867648] [client 41.203.67.171:4958] AH01276: Cannot serve directory /srv/fedena/public/: No matching DirectoryIndex (index.html,index.cgi,index.pl,index.php,index.xhtml,index.htm) found, and server-generated directory index forbidden by Options directive

==> /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, like Gecko) Chrome/40.0.2214.111 Safari/537.36"

Qualquer ajuda é apreciada.

    
por Ralph 11.03.2015 / 22:56

0 respostas