I want to make an app for a friend but he has shared hosting and the only option is fcgi and I can't find any documentation on how to do it. Is there anyways to run rails 3 on FCGI?

link|improve this question
1  
even if you can get it working it probably isnt a good idea.... – Matt Briggs Jul 21 '10 at 4:04
2  
Whatever JSP/ASP master. – BiscottiLighter Jul 21 '10 at 4:44
feedback

2 Answers

up vote 2 down vote accepted

Rails 3 is built on top of Rack and Rack provides a FastCGI handler.

link|improve this answer
Thanks, you're awesome. – BiscottiLighter Jul 22 '10 at 0:03
feedback

Put in public/whatever.fcgi

#!/usr/bin/ruby

require_relative '../config/environment'

class Rack::PathInfoRewriter
  def initialize(app)
    @app = app
  end

  def call(env)
    env.delete('SCRIPT_NAME')
    parts = env['REQUEST_URI'].split('?')
    env['PATH_INFO'] = parts[0]
    env['QUERY_STRING'] = parts[1].to_s
    @app.call(env)
  end
end

Rack::Handler::FastCGI.run  Rack::PathInfoRewriter.new(YOURAPPNAME::Application)

Check the example app here

link|improve this answer
Thanks, your example worked well for me, after replacing YOURAPPNAME with that found in config/application.rb . Also note that his use of RAILS_RELATIVE_URL_ROOT in .htaccess is actually his own creation, used in config/routes.rb – rogerdpack Apr 29 '11 at 13:32
feedback

Your Answer

 
or
required, but never shown

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