2011-10-08 17:36:38 -04:00
|
|
|
# Be sure to restart your server when you modify this file.
|
|
|
|
|
2013-10-11 11:54:38 -04:00
|
|
|
Gitlab::Application.config.session_store(
|
|
|
|
:redis_store, # Using the cookie_store would enable session replay attacks.
|
2014-08-08 11:56:33 -04:00
|
|
|
servers: Gitlab::Application.config.cache_store[1].merge(namespace: 'session:gitlab'), # re-use the Redis config from the Rails cache store
|
2013-10-11 11:54:38 -04:00
|
|
|
key: '_gitlab_session',
|
2013-12-25 06:30:33 -05:00
|
|
|
secure: Gitlab.config.gitlab.https,
|
2013-10-11 11:54:38 -04:00
|
|
|
httponly: true,
|
2014-08-26 04:58:16 -04:00
|
|
|
expire_after: 1.week,
|
2013-10-11 11:54:38 -04:00
|
|
|
path: (Rails.application.config.relative_url_root.nil?) ? '/' : Rails.application.config.relative_url_root
|
|
|
|
)
|