[mod] role:authelia

This commit is contained in:
roydfalk 2024-06-01 19:26:06 +02:00
parent f231fb75b0
commit d912a168a2
3 changed files with 18 additions and 2 deletions

View file

@ -5,6 +5,8 @@
"var_authelia_jwt_secret": "REPLACE_ME",
"var_authelia_users_file_path": "/var/authelia/users.yml",
"var_authelia_log_file_path": "/var/authelia/log.jsonl",
"var_authelia_domain": "authelia.example.org",
"var_authelia_redirect_url": "https://example.org",
"var_authelia_session_domain": "example.org",
"var_authelia_session_secret": "REPLACE_ME",
"var_authelia_storage_encryption_key": "REPLACE_ME",

View file

@ -120,12 +120,18 @@
},
"session": {
"name": "authelia_session",
"domain": "{{var_authelia_session_domain}}",
"same_site": "lax",
"secret": "{{var_authelia_session_secret}}",
"expiration": "1h",
"inactivity": "5m",
"remember_me": "1M"
"remember_me": "1M",
"cookies": [
{
"domain": "{{var_authelia_session_domain}}",
"authelia_url": "{{var_authelia_domain}}",
"default_redirection_url": "{{var_authelia_redirect_url}}"
}
]
},
"regulation": {
"max_retries": 3,

View file

@ -23,6 +23,14 @@
"type": "string",
"mandatory": false
},
"domain": {
"type": "string",
"mandatory": false,
},
"redirect_url": {
"type": "string",
"mandatory": false
},
"session_domain": {
"type": "string",
"mandatory": false