diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2010-06-19 23:03:12 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2010-06-19 23:03:12 +0000 |
commit | 34f73b005b44849ad8c4e2cb7902b40165acce3b (patch) | |
tree | 69b9489d36766086527aeb6c12703d77940686a5 | |
parent | ba42e1e2ff99a83852af892eb5de72db24007a30 (diff) | |
download | redmine-34f73b005b44849ad8c4e2cb7902b40165acce3b.tar.gz redmine-34f73b005b44849ad8c4e2cb7902b40165acce3b.zip |
Merged r3785 from trunk.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/0.9-stable@3795 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | lib/tasks/initializers.rake | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/tasks/initializers.rake b/lib/tasks/initializers.rake index ce8747504..cec557250 100644 --- a/lib/tasks/initializers.rake +++ b/lib/tasks/initializers.rake @@ -17,6 +17,13 @@ file 'config/initializers/session_store.rb' do # you'll be exposed to dictionary attacks. ActionController::Base.session = { :session_key => '_redmine_session', + # + # Uncomment and edit the :session_path below if are hosting your Redmine + # at a suburi and don't want the top level path to access the cookies + # + # See: http://www.redmine.org/issues/3968 + # + # :session_path => '/url_path_to/your/redmine/', :secret => '#{secret}' } EOF |