mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
Update expiration timeouts from milliseconds to seconds.
This commit is contained in:
parent
fed51cc17d
commit
d077ad10da
config.template.yml
example/kube/authelia/configs
internal/suites
BypassAll
DuoPush
HighAvailability
NetworkACL
Traefik
|
@ -205,11 +205,11 @@ session:
|
||||||
# The secret to encrypt the session cookie.
|
# The secret to encrypt the session cookie.
|
||||||
secret: unsecure_session_secret
|
secret: unsecure_session_secret
|
||||||
|
|
||||||
# The time in ms before the cookie expires and session is reset.
|
# The time in seconds before the cookie expires and session is reset.
|
||||||
expiration: 3600000 # 1 hour
|
expiration: 3600 # 1 hour
|
||||||
|
|
||||||
# The inactivity time in ms before the session is reset.
|
# The inactivity time in seconds before the session is reset.
|
||||||
inactivity: 300000 # 5 minutes
|
inactivity: 300 # 5 minutes
|
||||||
|
|
||||||
# The domain to protect.
|
# The domain to protect.
|
||||||
# Note: the authenticator must also be in that domain. If empty, the cookie
|
# Note: the authenticator must also be in that domain. If empty, the cookie
|
||||||
|
|
|
@ -75,8 +75,8 @@ access_control:
|
||||||
|
|
||||||
session:
|
session:
|
||||||
secret: unsecure_password
|
secret: unsecure_password
|
||||||
expiration: 3600000 # 1 hour
|
expiration: 3600 # 1 hour
|
||||||
inactivity: 300000 # 5 minutes
|
inactivity: 300 # 5 minutes
|
||||||
domain: example.com
|
domain: example.com
|
||||||
redis:
|
redis:
|
||||||
host: redis-service
|
host: redis-service
|
||||||
|
|
|
@ -15,8 +15,8 @@ authentication_backend:
|
||||||
session:
|
session:
|
||||||
secret: unsecure_session_secret
|
secret: unsecure_session_secret
|
||||||
domain: example.com
|
domain: example.com
|
||||||
expiration: 3600000 # 1 hour
|
expiration: 3600 # 1 hour
|
||||||
inactivity: 300000 # 5 minutes
|
inactivity: 300 # 5 minutes
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
local:
|
local:
|
||||||
|
|
|
@ -15,8 +15,8 @@ authentication_backend:
|
||||||
session:
|
session:
|
||||||
secret: unsecure_session_secret
|
secret: unsecure_session_secret
|
||||||
domain: example.com
|
domain: example.com
|
||||||
expiration: 3600000 # 1 hour
|
expiration: 3600 # 1 hour
|
||||||
inactivity: 300000 # 5 minutes
|
inactivity: 300 # 5 minutes
|
||||||
|
|
||||||
# Configuration of the storage backend used to store data and secrets. i.e. totp data
|
# Configuration of the storage backend used to store data and secrets. i.e. totp data
|
||||||
storage:
|
storage:
|
||||||
|
|
|
@ -185,10 +185,10 @@ session:
|
||||||
secret: unsecure_session_secret
|
secret: unsecure_session_secret
|
||||||
|
|
||||||
# The time in ms before the cookie expires and session is reset.
|
# The time in ms before the cookie expires and session is reset.
|
||||||
expiration: 3600000 # 1 hour
|
expiration: 3600 # 1 hour
|
||||||
|
|
||||||
# The inactivity time in ms before the session is reset.
|
# The inactivity time in ms before the session is reset.
|
||||||
inactivity: 300000 # 5 minutes
|
inactivity: 300 # 5 minutes
|
||||||
|
|
||||||
# The domain to protect.
|
# The domain to protect.
|
||||||
# Note: the authenticator must also be in that domain. If empty, the cookie
|
# Note: the authenticator must also be in that domain. If empty, the cookie
|
||||||
|
|
|
@ -15,8 +15,8 @@ authentication_backend:
|
||||||
session:
|
session:
|
||||||
secret: unsecure_session_secret
|
secret: unsecure_session_secret
|
||||||
domain: example.com
|
domain: example.com
|
||||||
expiration: 3600000 # 1 hour
|
expiration: 3600 # 1 hour
|
||||||
inactivity: 300000 # 5 minutes
|
inactivity: 300 # 5 minutes
|
||||||
|
|
||||||
# Configuration of the storage backend used to store data and secrets. i.e. totp data
|
# Configuration of the storage backend used to store data and secrets. i.e. totp data
|
||||||
storage:
|
storage:
|
||||||
|
|
|
@ -15,8 +15,8 @@ authentication_backend:
|
||||||
session:
|
session:
|
||||||
secret: unsecure_session_secret
|
secret: unsecure_session_secret
|
||||||
domain: example.com
|
domain: example.com
|
||||||
expiration: 3600000 # 1 hour
|
expiration: 3600 # 1 hour
|
||||||
inactivity: 300000 # 5 minutes
|
inactivity: 300 # 5 minutes
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
local:
|
local:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user