22 lines
983 B
Ruby
22 lines
983 B
Ruby
# Be sure to restart your server when you modify this file.
|
|
|
|
# Your secret key for verifying cookie session data integrity.
|
|
# If you change this key, all old sessions will become invalid!
|
|
# Make sure the secret is at least 30 characters and all random,
|
|
# no regular words or you'll be exposed to dictionary attacks.
|
|
ActionController::Base.session = {
|
|
:key => '_dextronet_session',
|
|
:secret => 'c088c1cac65e99187c3af8316642155f96a998348b94dd2b9a3ca99b0f2da8e3297f3d18c34c4a142debf9dc6352539187f2398d5ae7b3690d73ef78b69c0b15'
|
|
}
|
|
|
|
ActionController::Dispatcher.middleware.insert_before(
|
|
ActionController::Session::CookieStore,
|
|
FlashSessionCookieMiddleware,
|
|
ActionController::Base.session_options[:key]
|
|
)
|
|
|
|
# Use the database for sessions instead of the cookie-based default,
|
|
# which shouldn't be used to store highly confidential information
|
|
# (create the session table with "rake db:sessions:create")
|
|
# ActionController::Base.session_store = :active_record_store
|