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
daikini (author)
Mon Mar 24 10:55:01 -0700 2008
ivey (committer)
Mon Mar 24 11:05:14 -0700 2008
commit  0f3cc717b6158809625b3b8c6c1597714d9f5f4f
tree    c0f0477d0f3aea571cba804997192dff50cd0255
parent  76a0dde86f08401ff6dcbda628e5cdee57d103ee
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.