feat(redis): add env var HYDRA_SQL_REDIS_PREFIX/HYDRA_SQL_REDIS_TTL
This commit is contained in:
parent
740a7569e4
commit
ea7d353be7
3
.env
3
.env
|
@ -41,3 +41,6 @@ LOCK_DSN=flock
|
||||||
SENTRY_DSN=
|
SENTRY_DSN=
|
||||||
###< sentry/sentry-symfony ###
|
###< sentry/sentry-symfony ###
|
||||||
REDIS_DSN=redis://redis:6379
|
REDIS_DSN=redis://redis:6379
|
||||||
|
|
||||||
|
HYDRA_SQL_REDIS_PREFIX=mse
|
||||||
|
HYDRA_SQL_REDIS_TTL=3600
|
||||||
|
|
|
@ -12,7 +12,7 @@ framework:
|
||||||
# Enables session support. Note that the session will ONLY be started if you read or write from it.
|
# Enables session support. Note that the session will ONLY be started if you read or write from it.
|
||||||
# Remove or comment this section to explicitly disable session support.
|
# Remove or comment this section to explicitly disable session support.
|
||||||
session:
|
session:
|
||||||
handler_id: '%env(REDIS_DSN)%'
|
handler_id: '%env(REDIS_DSN)%?prefix=%env(string:HYDRA_SQL_REDIS_PREFIX)%&ttl=%env(int:HYDRA_SQL_REDIS_TTL)%'
|
||||||
cookie_secure: auto
|
cookie_secure: auto
|
||||||
cookie_samesite: lax
|
cookie_samesite: lax
|
||||||
storage_factory_id: session.storage.factory.native
|
storage_factory_id: session.storage.factory.native
|
||||||
|
|
Loading…
Reference in New Issue