Add secure flag to cookie

This commit is contained in:
Neil Lalonde 2014-01-30 17:06:45 -05:00
parent fc36a87e72
commit 4e158b2316
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,9 @@
# Be sure to restart your server when you modify this file.
Discourse::Application.config.session_store :cookie_store, key: '_forum_session'
Discourse::Application.config.session_store :cookie_store, {
key: '_forum_session',
secure: SiteSetting.use_https
}
# Use the database for sessions instead of the cookie-based default,
# which shouldn't be used to store highly confidential information