5 lines
336 B
Ruby
5 lines
336 B
Ruby
Rails.application.config.session_store :cookie_store,
|
|
key: '_your_app_session',
|
|
secure: Rails.env.production?,
|
|
httponly: true,
|
|
same_site: :strict #
|