Reputation: 101
I have Rails application, which is running on https. My application session cookies are http-only. How to set those cookies as secure and https-only in rails?
Upvotes: 9
Views: 11672
Reputation: 684
If you want to flag the session cookie as secure, in config/initializers/session_store.rb
, set the secure flag:
Demo::Application.config.session_store :cookie_store,
key: '_demo_session',
secret: "your secret",
secure: Rails.env.production?, # flags cookies as secure only in production
httponly: true # should be true by default for all cookies
If you want to flag all cookies as secure, add config.force_ssl = true
in the desired config/environments/*.rb
file. This feature adds other functionality to your Rails app, summarized here.
Upvotes: 13