使用 Apache 虚拟主机设置乘客?

使用 Apache 虚拟主机设置乘客?

我正在设置一个新服务器,打算在上面托管多个 Ruby on Rails 应用程序。

该服务器运行的是 Ubuntu 10.04 LTS,我已经设置了 Apache 虚拟主机,因此每个应用程序都有自己的 sites-available 配置文件(指向 Rails 公共目录)。然后我创建了一个从 到 的符号sites-enabled/(CONFIG FILE HERE)链接sites-available/(CONFIG FILE HERE)

可用站点

root@HAH-UBUNTU-GER /etc/apache2/sites-available # ls
default  default-ssl  application1.com  application2.com

已启用的站点(符号链接)

root@HAH-UBUNTU-GER /etc/apache2/sites-enabled # ls
000-default  application1.com  application2.com

有关符号链接的更多信息:

root@HAH-UBUNTU-GER /etc/apache2/sites-enabled # ls -l
total 0
lrwxrwxrwx 1 root root 26 2012-05-04 11:41 000-default -> ../sites-available/default
lrwxrwxrwx 1 root root 39 2012-05-04 12:28 application1.com -> ../sites-available/application1.com
lrwxrwxrwx 1 root root 37 2012-05-04 12:09 application2.com -> ../sites-available/application2.com

我已将所有 Rails 应用程序文件上传到/var/www/vhosts/application1.com并确保 Apache 配置文件指向公共目录。

Bundler、ruby gems 等都可以工作,但是我无法让 Passenger 加载应用程序。

与往常一样,我使用 bash 脚本设置了服务器,该脚本包含与 Passenger 安装相关的以下部分:

# Install and setup the Apache Passenger Module
yes '' | sudo /usr/local/bin/passenger-install-apache2-module

# Add the Passenger config to /etc/apache2/httpd.conf
sudo cat > /etc/apache2/httpd.conf << HTTPD_CONF
LoadModule passenger_module /usr/local/lib/ruby/gems/1.9.1/gems/passenger-      3.0.11/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11
PassengerRuby /usr/local/bin/ruby
HTTPD_CONF

application1.com 的完整虚拟主机配置文件是:

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    ServerName application1.com
    DocumentRoot /var/www/vhosts/application1.com/public
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /var/www/vhosts/application1.com/public>
            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 /var/log/apache2/error.log

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

    CustomLog /var/log/apache2/access.log combined

Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
    Options Indexes MultiViews FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all

如果有什么不同,我将通过编辑我的主机文件来访问网站,将服务器 IP 地址指向各个域。

当我访问该域名时,我会得到公共目录的列表:

/public 的目录列表

我猜我做的某件事明显是错的,但我搞不清楚。任何帮助我都会很感激。

有关更多信息,我使用的完整 bash 脚本在这里:https://raw.github.com/deanperry/onelineserver/master/ruby192.sh

更新

Loaded Modules:
 core_module (static)
 log_config_module (static)
 logio_module (static)
 mpm_prefork_module (static)
 http_module (static)
 so_module (static)
 alias_module (shared)
 auth_basic_module (shared)
 authn_file_module (shared)
 authz_default_module (shared)
 authz_groupfile_module (shared)
 authz_host_module (shared)
 authz_user_module (shared)
 autoindex_module (shared)
 cgi_module (shared)
 deflate_module (shared)
 dir_module (shared)
 env_module (shared)
 mime_module (shared)
 negotiation_module (shared)
 php5_module (shared)
 reqtimeout_module (shared)
 setenvif_module (shared)
 status_module (shared)
Syntax OK

答案1

根据文档,您需要在乘客网站上禁用 MultiViews。此外,您DocumentRoot还应指向包含公共目录(即 Passenger)的目录检查所选目录是否包含乘客应用程序通过检查{DocumentRoot}/../config/environment.rb,验证这是正确的。

如果你还是困惑的话,启用日志记录并弄清楚为什么它认为你在那个位置没有乘客应用程序。

相关内容