1

これが私の質問です。ubuntu12で標準のrailとredmineをインストールしました。このエラーが発生しました:ディレクトリ "/ var/www"は有効なRubyonRailsアプリケーションルートではないようです。

これは一般的なエラーのようですが、ネット上で解決策はありません: http ://www.google.fr/search?q=The+directory+%22%2Fvar%2Fwww%22+does+not+appear+to+be+ a + valid + Ruby + on + Rails + application + root。+&ie = utf-8&oe = utf-8&aq = t&rls = org.mozilla:fr:official&client = firefox-a

これが私のデフォルトファイルです:

<VirtualHost *:80>
        ServerAdmin webmaster@localhost

        DocumentRoot /var/www


<Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>
        <Directory /var/www/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>

        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
        <Directory "/usr/lib/cgi-bin">
                AllowOverride None
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                Order allow,deny
                Allow from all
        </Directory>

        ErrorLog ${APACHE_LOG_DIR}/error.log

        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn

        CustomLog ${APACHE_LOG_DIR}/access.log combined


    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

PassengerDefaultUser www-data
RailsEnv production
RailsBaseURI /redmine
<Directory /var/www/redmine/>

AllowOverride None
AddHandler fcgid-script .fcgi
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all

PassengerEnabled on
RailsBaseURI /redmine
PassengerResolveSymlinksInDocumentRoot on
</Directory>


</VirtualHost>
Include /etc/apache2/mods-available/passenger.conf

と私のpassenger.conf:

<IfModule mod_passenger.c>
  PassengerRoot /usr
  PassengerRuby /usr/bin/ruby
  PassengerDefaultUser www-data
</IfModule>

そして、私は理由がわかりません...よろしくBussiere

4

3 に答える 3

5

publicRailsアプリ内のディレクトリにDocumentRootを指定する必要があります

DocumentRoot /var/www/YOUR_APP_NAME/public

[...]

<Directory /var/www/YOUR_APP_NAME/public>
于 2012-05-20T22:11:46.230 に答える
1

一部のインストール手順で、simlink の作成に誤りがありました。使用する右の simlink は次のとおりです。

sudo ln -s /usr/share/redmine /var/www/redmine

vhost は次のようになります。

<VirtualHost *:80>
  ServerName redmine.yourdomain.tld  

  DocumentRoot /var/www/redmine/public  

  PassengerMaxPoolSize 4
  PassengerDefaultUser www-data
  RailsEnv production
  RailsBaseURI /  

  <Directory /var/www/redmine/public>
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
  </Directory>  

  LogLevel info
  ErrorLog /var/log/apache2/redmine-error.log
  CustomLog /var/log/apache2/redmine-access.log combined
</VirtualHost>
于 2013-11-01T20:42:49.213 に答える
1

DocumentRootPassenger の下の Rails アプリケーションの場合は、アプリケーションのpublicディレクトリにする必要があります。

于 2012-05-20T21:42:24.253 に答える