gpt4 book ai didi

ruby-on-rails - Phusion passenger - 安装后我要做什么?

转载 作者:太空宇宙 更新时间:2023-11-03 17:01:42 38 4
gpt4 key购买 nike

我在 linode 上使用 Ubuntu 10.04,并且安装了 apache2 和 Rails 3.2.2。我的应用程序在 example.com:3000 上运行良好

我已按照说明在此处安装 Phusion passenger:

http://www.modrails.com/install.html

这里:

http://wiki.brightbox.co.uk/docs:rvm

但我不确定如何在生产模式下在 example.com 上实际运行我的应用程序。我输入什么命令来执行此操作?我是执行“rails server”还是“rails server -p 80”?我使用的命令是什么?

编辑 1:

我的虚拟主机文件位于

<VirtualHost *:80>
ServerAdmin webmaster@example.com
ServerName example.com
ServerAlias www.example.com
DocumentRoot /srv/www/example.com/public_html/
ErrorLog /srv/www/example.com/logs/error.log
CustomLog /srv/www/example.com/logs/access.log combined

<Directory /srv/www/example.com/public_html/>
AllowOverride all
Options -Multiviews
</Directory>
</VirtualHost>

我不确定的一件事是我是否应该将目录设置为

/srv/www/example.com/public_html/

/srv/www/example.com/public/

linode 安装指南说明了第一种方法 (http://library.linode.com/web-servers/apache/installation/ubuntu-10.04-lucid),但 Passenger 说明了第二种方法。只要一致就重要吗?

我的 passenger 模块位在/etc/apache2/mods-available 中如下:

在 passenger.conf 中

PassengerRoot /usr/local/rvm/gems/ruby-1.9.3-p125/gems/passenger-3.0.11
PassengerRuby /usr/local/rvm/wrappers/ruby-1.9.3-p125/ruby

在 passenger.load 中

LoadModule passenger_module /usr/local/rvm/gems/ruby-1.9.3-p125/gems/passenger-3.0.11/ext/apache2/mod_passenger.so    

编辑 2:我现在将 passenger 模块位添加到 apache 配置文件中,而不是 passenger.conf 和 passenger.load 文件。我为此设置了以下内容:

配置/环境/production.rb ... 配置.assets.compile = true ...

最佳答案

安装过程(例如,passenger-install-apache2-module 部分)在最后给出了您需要做什么的说明。

要点是为应用程序创建一个虚拟主机,例如 /etc/apache2/sites-available/myapp 看起来像这样:

<VirtualHost *:80>
ServerName example.com
ServerAlias *.example.com
DocumentRoot /path/to/app/public

PassengerMinInstances 2
PassengerPoolIdleTime 600
PassengerUserSwitching on
PassengerDefaultUser someuser

RailsBaseURI /

<Directory "/path/to/app/public">
FileETag none
Options All
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>

确保按照说明将乘客模块位放在正确的位置。这是我的样子:

$ cat /etc/apache2/mods-available/passenger.*
PassengerRoot /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11
PassengerRuby /usr/local/bin/ruby

LoadModule passenger_module /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.11/ext/apache2/mod_passenger.so

然后您只需执行通常的 apache 操作即可:

sudo a2ensite myapp
sudo /etc/init.d/apache2 reload

假设 example.com 指向这台机器,您应该可以开始了。

关于ruby-on-rails - Phusion passenger - 安装后我要做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9758464/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com