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
Search Repo:
Michael S. Klishin (author)
Sat May 03 19:59:06 -0700 2008
commit  f35001ff89ff452ca1ac09cca3274cbd2912ffc4
tree    8bf820bafbec6eb0d27701b53f48a6101cce0c9c
parent  7f8f593329676577dd7588bb9dca9a889ae7b1d7 parent  76f58a0c22c40e3d86dc7fd7b4601abbfa0fa4d5
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.