forgeplus/config/initializers/session_store.rb

9 lines
500 B
Ruby
Raw Permalink Normal View History

2020-03-09 00:40:16 +08:00
# 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 "rails g active_record:session_migration")
# Rails.application.config.session_store :active_record_store
# Be sure to restart your server when you modify this file.
2021-06-22 15:54:42 +08:00
Rails.application.config.session_store :cache_store, :expire_after => 24.hours, :httponly => true, :secure => false, key: '_educoder_session', domain: :all
2020-03-09 00:40:16 +08:00