##// END OF EJS Templates
Replaced SessionStore :session_key with :key (#6887)....
Jean-Philippe Lang -
r4291:c4a218358f49
parent child
Show More
@@ -17,7 +17,7 config.action_mailer.perform_deliveries = true
17 config.action_mailer.delivery_method = :test
17 config.action_mailer.delivery_method = :test
18
18
19 config.action_controller.session = {
19 config.action_controller.session = {
20 :session_key => "_test_session",
20 :key => "_test_session",
21 :secret => "some secret phrase for the tests."
21 :secret => "some secret phrase for the tests."
22 }
22 }
23
23
@@ -16,7 +16,7 file 'config/initializers/session_store.rb' do
16 # secret is at least 30 characters and all random, no regular words or
16 # secret is at least 30 characters and all random, no regular words or
17 # you'll be exposed to dictionary attacks.
17 # you'll be exposed to dictionary attacks.
18 ActionController::Base.session = {
18 ActionController::Base.session = {
19 :session_key => '_redmine_session',
19 :key => '_redmine_session',
20 #
20 #
21 # Uncomment and edit the :session_path below if are hosting your Redmine
21 # Uncomment and edit the :session_path below if are hosting your Redmine
22 # at a suburi and don't want the top level path to access the cookies
22 # at a suburi and don't want the top level path to access the cookies
General Comments 0
You need to be logged in to leave comments. Login now