我想要部署紅帽企業Linux服務器on Rails應用程序我紅寶石軌釋放6.5服務器 我也做了以下內容:部署紅寶石在App客運和Apache
Server版本:阿帕奇/ 2.2.15 (UNIX)
RVM安裝Ruby
創業板安裝導軌
創業板安裝乘客
乘客安裝-Apache2的模塊
然後我添加下面一行在我的httpd.conf文件
LoadModule passenger_module /home/myname/.rvm/gems/ruby-2.1.2/gems/passenger-4.0.50/buildout/apache2/mod_passenger.so
<IfModule mod_passenger.c>
PassengerRoot /home/myname/.rvm/gems/ruby-2.1.2/gems/passenger-4.0.50
PassengerDefaultRuby /home/myname/.rvm/gems/ruby-2.1.2/wrappers/ruby
</IfModule>
ALOS添加以下到我的httpd.conf
<VirtualHost *:80>
ServerName www.whatever.com
# !!! Be sure to point DocumentRoot to 'public'!
DocumentRoot /var/www/whatever/public
<Directory /var/www/whatever/public>
# This relaxes Apache security settings.
AllowOverride all
# MultiViews must be turned off.
Options -MultiViews
# Uncomment this if you're on Apache >= 2.4:
#Require all granted
</Directory>
其他信息 RVM 31年1月25日
我重新啓動httpd和我不能看到whatever.com 我已經買域中運行我的應用程序,並將其重定向到我的機器的IP。 有什麼問題?
有兩個問題:當您轉到該URL時,您會看到什麼?另外,當你在瀏覽器中輸入服務器的IP地址時,你會看到什麼? – AJFaraday 2014-09-23 12:04:25
對這兩個問題的回答:此網頁不可用 – user1876128 2014-09-23 12:08:58
/etc/httpd/logs/error_log或/ etc/httpd/logs/access_log中是否有任何內容出現? – AJFaraday 2014-09-23 12:18:11