Displaying 1 result from an estimated 1 matches for "_apps_session".
Did you mean:
_app_session
2009 Oct 13
1
config.action_controller.session[:secret] vs protect_from_forgery :secret
...share the same session across many Rails applications.
All of them are using Rails 2.2.2. I know that, to share the session, it''s
(supposedly) just a matter of sharing the same key and secret among the
apps, like this:
config.action_controller.session = {
:session_key => ''_apps_session'',
:secret =>
''71b94f37789bbedf9062616218dab005f2ffae65de2cac6313423a70eeff07189c7694d71d5fc0996''
}
This being put in config/environment.rb of all the apps you want the session
to be share with.
Now, some of the apps are returning in the HTTP response a ses...