2

私は一週間この問題に固執してきました。Rails アプリケーションを Apache2 のパッセンジャー モジュール経由で実行できません。Rails 3.2.8 Ruby 1.9.3 Passenger 4.0.5でUbuntu 12.04 64ビットを使用しています。私の Rails アプリは /home/sarunint/cafe_grader/web にあります

これは私の /etc/apache2/sites-available/default です

<VirtualHost *:80>
ServerAdmin webmaster@localhost

DocumentRoot /var/www
    RailsBaseURI /grader
<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

Alias /doc/ "/usr/share/doc/"
<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>
</VirtualHost>

そして、これは私の /etc/apache2/httpd.conf です

LoadModule passenger_module /home/sarunint/.rvm/gems/ruby-1.9.3-p392/gems/passenger-4.0.5/libout/apache2/mod_passenger.so
PassengerRoot /home/sarunint/.rvm/gems/ruby-1.9.3-p392/gems/passenger-4.0.5
PassengerRuby /home/sarunint/.rvm/wrappers/ruby-1.9.3-p392/ruby

PS。これが重複したトピックである場合は、お気軽に教えてください:)

ありがとう

アップデート

Apache2を再起動すると、次のようになることに気付きました:

sarunint@server1:~$ sudo /etc/init.d/apache2 restart
 * Restarting web server apache2                                                 
[Tue Jun 18 23:05:56 2013] [warn] module passenger_module is already loaded, skipping
... waiting [Tue Jun 18 23:05:57 2013] [warn] module passenger_module is already loaded, skipping

更新 2 @mohamed-abshir による grep を実行した後、次の行を取得しました。

sarunint@server1:/etc/apache2$ grep -irl "LoadModule passenger_module" .
./mods-available/passenger.load
./mods-enabled/passenger.load
./httpd.conf

ありがとう。

アップデート 3

which rubyこれを印刷します: /home/sarunint/.rvm/rubies/ruby-1.9.3-p392/bin/ruby

cat /etc/apache2/mods-enabled/passenger.loadこれを印刷します: LoadModule passenger_module /usr/lib/apache2/modules/mod_passenger.so

そして、これはあなたが望むファイルです:

<VirtualHost *:80>
        ServerName sarunint.uni.me
        ServerAdmin webmaster@localhost

        DocumentRoot /var/www
        RailsBaseURI /grader
        <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

    Alias /doc/ "/usr/share/doc/"
    <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>
    <Directory /home/sarunint/cafe_grader/web/public>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>
</VirtualHost>
4

3 に答える 3

0

パッセンジャー 2.0 以降、DocumentRoot のシンボリック リンクをたどっていません。これは、Ruby on Rails アプリケーションがディレクトリのconfig.ru1 レベル後ろを探しているかどうかをパッセンジャーが検出する方法です。DocumentRootであると仮定するDocumentRootと、ファイル/var/www/publicを検索します。しかし、www が別の場所へのシンボリック リンクである場合、シンボリック リンクをたどらないため、ファイルを見つけることができず、要求を処理できないとしましょう。/var/wwwconfig.ru/var/www -> /home/ruby/my_app/public

これを修正するには、次のように追加できますhttpd.conf

PassengerResolveSymlinksInDocumentRoot on
于 2016-10-17T14:48:08.840 に答える