Jason Su <[email protected]> wrote: > That's strange, doesn't really explain why cookies work fine on a > fresh Rails 2.3.8 app, nor why cookies stopped working for me after I > switched to Unicorn.
Actually, another option you could try is to use OldRails (designed for Rails <= 2.2) and try to get that working with Rails 2.3. This should cause Rails 2.3 to use the cgi_wrapper.rb and not the native Rack interface: --------------- config.ru ------------------ require "unicorn/app/old_rails" use Unicorn::App::OldRails::Static run Unicorn::App::OldRails.new -------------------------------------------- -- Eric Wong _______________________________________________ Unicorn mailing list - [email protected] http://rubyforge.org/mailman/listinfo/mongrel-unicorn Do not quote signatures (like this one) or top post when replying
