session_store.rb 233 B

1234567
  1. # Be sure to restart your server when you modify this file.
  2. Rails.application.config.session_store :cookie_store, {
  3. key: '_mastodon_session',
  4. secure: (Rails.env.production? || ENV['LOCAL_HTTPS'] == 'true'),
  5. same_site: :lax,
  6. }