##// END OF EJS Templates
Added a second rake task to generate the session store file....
Eric Davis -
r3153:4cf2e7c216ab
parent child
Show More
@@ -1,24 +1,27
1 1 desc 'Generates a configuration file for cookie store sessions.'
2 2
3 3 file 'config/initializers/session_store.rb' do
4 4 path = File.join(RAILS_ROOT, 'config', 'initializers', 'session_store.rb')
5 5 secret = ActiveSupport::SecureRandom.hex(40)
6 6 File.open(path, 'w') do |f|
7 7 f.write <<"EOF"
8 8 # This file was generated by 'rake config/initializers/session_store.rb',
9 9 # and should not be made visible to public.
10 10 # If you have a load-balancing Redmine cluster, you will need to use the
11 11 # same version of this file on each machine. And be sure to restart your
12 12 # server when you modify this file.
13 13
14 14 # Your secret key for verifying cookie session data integrity. If you
15 15 # change this key, all old sessions will become invalid! Make sure the
16 16 # secret is at least 30 characters and all random, no regular words or
17 17 # you'll be exposed to dictionary attacks.
18 18 ActionController::Base.session = {
19 19 :session_key => '_redmine_session',
20 20 :secret => '#{secret}'
21 21 }
22 22 EOF
23 23 end
24 24 end
25
26 desc 'Generates a configuration file for cookie store sessions.'
27 task :generate_session_store => ['config/initializers/session_store.rb']
General Comments 0
You need to be logged in to leave comments. Login now