Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am porting a 2.x rails app to rails3; we'll call it foo-app. Foo-app is one section of a larger rails app and lives at main_rails_app.com/foo-app. Previously we just set up the following in our foo-app production config to ensure that our foo-app routes worked properly:

ActionController::Base.relative_url_root = "/foo-app"

However, with rails3, I now get:

DEPRECATION WARNING: ActionController::Base.relative_url_root is ineffective. Please stop using it.

I have since changed the config entry to the following:

config.action_controller.relative_url_root = "/foo-app"

This mostly works in that all calls to external resources (javascript/css/images) will use /foo-app. However, none of my routes change appropriately, or put another way, foo-app root_path gives me '/' when I would expect '/foo-app'.

Two questions:

  1. What is the replacement for ActionController::Base.relative_url_root
  2. if it is config.action_controller.relative_url_root, then why are my routes not reflecting the relative_url_root value I set?
share|improve this question
2  
Does config.action_controller.relative_url_root still work for you in the latest rails 3 final release? Seems broken for me. – raidfive Oct 11 '10 at 23:42
You are missing 'do' scope "/context_root" do ... end – Dejan Dec 10 '10 at 0:00

2 Answers

up vote 12 down vote accepted

You should be able to handle all that within the routes.rb file. Wrap all your current routes in scope; for instance.

scope "/context_root" do
   resources :controller
   resources :another_controller
   match 'welcome/', :to => "welcome#index"
   root :to => "welcome#index"
end

You can then verify your routing via the rake routes they should show your routes accordingly, including your context root(relative_url_root)

share|improve this answer
Hey Dax, thanks for the reply. I found this same solution a couple of days before you posted it back on 7-21, but having your post confirms I did/found the right solution. Thanks. – ynkr Jul 29 '10 at 0:15
This is helpful, but then how do you apply it differently for your development environment versus your production environment? My development environment needn't be behind a reverse proxy like the production environment is. – tobinjim Feb 3 '11 at 23:50
11  
@tobinjim I found that I needed to set the RAILS_RELATIVE_URL_ROOT environment variable in addition to wrapping my routes in a scope. I then used scope ENV['RAILS_RELATIVE_URL_ROOT'] || '/' do so that localhost:3000 still works in development without the /context_root. – aNoble Feb 23 '11 at 22:06
@aNoble seems like that's about the right way to go. Here's another example: github.com/dre3k/rails3_fcgi/blob/master/config/routes.rb (he sets his RAILS_RELATIVE_URL_ROOT in .htaccess, for example) – rogerdpack Apr 29 '11 at 13:30
1  
What if you don't want to put the prefix in your config/routes, but it depends on your environment? For example, I have a /rails and /rails-staging prefix for my single domain name: each one is proxied to a different Rails cluster. I just set config.relative_url_root in my config/environments/*.rb etc to help me manage all that, and the url's just worked. It was a nice per-environment url prefix that's now gone :-( – Daniel Tsadok Oct 31 '11 at 22:51
show 1 more comment

If you deploy via Passenger, use the RackBaseURI directive: http://www.modrails.com/documentation/Users%20guide%20Apache.html#RackBaseURI

Otherwise, you can wrap the run statement in your config.ru with the following block:

map ActionController::Base.config.relative_url_root || "/" do
  run FooApp::Application
end

Then you only have to set the environment variable RAILS_RELATIVE_URL_ROOT to "/foo-app". This will even apply to routes set in gems or plugins.

Warning: do not mix these two solutions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.