public
Rubygem
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
wycats (author)
Wed Feb 13 11:48:05 -0800 2008
commit  f9b8d869671346f68f64c01db29106e0e56ed20c
tree    9244f3a93f5f83fcb6c4c95eb8df5803596fc5fe
parent  39973931efc14ed19445b64dc3ee4296e8c5b82f parent  bdfa396c8c4c6dda7a9a4a3a7adaa30b8d39fb85
merb-core / CONFIG
100644 11 lines (11 sloc) 0.68 kb
1
2
3
4
5
6
7
8
9
10
11
==== Configuration options
:session_id_cookie_only<Boolean>::
  If true, sessions may be passed only through cookies. If false, they may also
  be passed through the session_id_key query param. This might be necessary for
  flash uploaders, which do not pass cookies with file uploads. This can be
  used in conjunction with :query_string_whitelist.
:query_string_whitelist<Array[String]>::
  A list of "controller/action" URLs that should allow session IDs to be passed
  through the query string even if :session_id_cookie_only is set to true. We
  recommend using session.regenerate after any controller making use of this
  in case someone is trying a session fixation attack.