5

我正在努力解决三个主要问题,我感谢对其中任何一个的帮助。

1) 如何将 Rails 应用程序配置myurl.com/myapp/为 root?

我试过了routes.rb

scope '/myapp' || '/' do
    # all resources and routes go here
    root :to => "papers#index"

    resources :papers
end 

environment.rb,我把它加到了顶部

ENV['RAILS_RELATIVE_URL_ROOT'] = "/myapp"

这几乎可以工作,除了rake routes不为“/”打印任何路线,并GET myurl.com/myapp/产生ActionController::RoutingError (No route matches [GET] "/")

2)需要告诉apache什么?

我的共享服务器的提供者建议把它放到~/html/.htaccess

RewriteEngine on
RewriteRule ^myapp/(.*)$ /fcgi-bin/rails4/$1 [QSA,L]

/fcgi-bin/rails4存在

#!/bin/sh

# This is needed to find gems installed with --user-install
export HOME=/home/kadrian

# Include our profile to include the right RUBY
. $HOME/.bash_profile

# This makes Rails/Rack think we're running under FastCGI. WTF?!
# See ~/.gem/ruby/1.9.1/gems/rack-1.2.1/lib/rack/handler.rb
export PHP_FCGI_CHILDREN=1

# Get into the project directory and start the Rails server
cd $HOME/rails4
exec bundle exec rails server -e production

当我单击站点上的任何链接时,浏览器 url 会更改为myurl.com/fcgi-bin/rails4/papers/1,例如它应该在的位置myurl.com/myapp/papers/1。我怎样才能防止这种情况?

3)如何让资产运作

我觉得这将与1)和2)一起以某种方式解决。但是,现在,该应用程序尝试执行以下操作:

GET myurl.com/assets/application-5e86fb668d97d38d6994ac8e9c45d45e.css

这会产生一个404 Not Found. 资产也应该在子目录下,对吧?我如何告诉 rails 把它们放在那里/找到它们?

4

1 回答 1

3

为了尝试回答您的问题,我将做出一些假设。

  1. 我假设有一个静态站点,myurl.com并且您只希望在其上提供 Rails 应用程序myurl.com/myapp

  2. 我假设您的共享主机提供商更喜欢 FastCGI 作为服务机架应用程序 (Rails) 的一种方式

基于这些假设,我相信如果您:

  1. 将 Rails 应用程序移到~/html/myapp文件夹下
  2. .htaccess文件添加到~/html/myapp/public内容:
    AddHandler fastcgi-script .fcgi

    选项 +FollowSymLinks +ExecCGI

    重写引擎开启

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ dispatch.fcgi/$1 [QSA,L]

    ErrorDocument 500“Rails 应用程序无法正常启动”

  1. dispatch.fcgi文件添加到~/html/myapp/public内容:
    ENV['RAILS_ENV'] ||= '生产'
    ENV['GEM_HOME'] = File.expand_path('your_gem_home')

    需要'fcgi'
    需要 File.join(File.dirname(__FILE__), '../config/environment.rb')

  1. chmod +x ~/html/myapp/public/dispatch.fcgi

该应用程序应该可以正常启动并且可以正常路由...

我认为您不必担心设置config.action_controller.relative_url_root

bundle install --deployment在部署您的应用程序之前,我还会安装您的 gems 。

最后,你没有得到根路由的原因是因为没有: root :to => 'controller#action'在你的config/routes.rb

希望这会有所帮助,如果没有,请查看:

Dreamhost - Rails 3 和 FastCGIFastCGI 设置,其中包括一些关于使用的提示ENV['RAILS_RELATIVE_URL_ROOT']

于 2013-08-13T04:34:50.467 回答