diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2007-02-22 00:57:02 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2007-02-22 00:57:02 +0000 |
commit | 5a1251dc2df7a3a1e4d6fec2e9085a464543ff50 (patch) | |
tree | d76efdb32d7074db5fea8c9298838ce78f0bf8da /railties/environments | |
parent | 45dd256889cddd1a1746d122344a966873e03921 (diff) | |
download | rails-5a1251dc2df7a3a1e4d6fec2e9085a464543ff50.tar.gz rails-5a1251dc2df7a3a1e4d6fec2e9085a464543ff50.tar.bz2 rails-5a1251dc2df7a3a1e4d6fec2e9085a464543ff50.zip |
Session configuration in config/environment.rb instead of app/controllers/application.rb
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6198 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/environments')
-rw-r--r-- | railties/environments/environment.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/railties/environments/environment.rb b/railties/environments/environment.rb index fe12591ded..e7526ab5e3 100644 --- a/railties/environments/environment.rb +++ b/railties/environments/environment.rb @@ -40,7 +40,11 @@ Rails::Initializer.run do |config| # Make Active Record use UTC-base instead of local time # config.active_record.default_timezone = :utc - + + # Your secret key for verifying cookie session data integrity. + # If you change this key, all old sessions will become invalid! + config.action_controller.session = { :secret => '<%= CGI::Session.generate_unique_id(app_name) %>' } + # See Rails::Configuration for more options end @@ -57,4 +61,4 @@ end # Mime::Type.register "text/richtext", :rtf # Mime::Type.register "application/x-mobile", :mobile -# Include your application configuration below
\ No newline at end of file +# Include your application configuration below |