[mod] role:authelia
This commit is contained in:
parent
f231fb75b0
commit
d912a168a2
3 changed files with 18 additions and 2 deletions
|
@ -5,6 +5,8 @@
|
||||||
"var_authelia_jwt_secret": "REPLACE_ME",
|
"var_authelia_jwt_secret": "REPLACE_ME",
|
||||||
"var_authelia_users_file_path": "/var/authelia/users.yml",
|
"var_authelia_users_file_path": "/var/authelia/users.yml",
|
||||||
"var_authelia_log_file_path": "/var/authelia/log.jsonl",
|
"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_domain": "example.org",
|
||||||
"var_authelia_session_secret": "REPLACE_ME",
|
"var_authelia_session_secret": "REPLACE_ME",
|
||||||
"var_authelia_storage_encryption_key": "REPLACE_ME",
|
"var_authelia_storage_encryption_key": "REPLACE_ME",
|
||||||
|
|
|
@ -120,12 +120,18 @@
|
||||||
},
|
},
|
||||||
"session": {
|
"session": {
|
||||||
"name": "authelia_session",
|
"name": "authelia_session",
|
||||||
"domain": "{{var_authelia_session_domain}}",
|
|
||||||
"same_site": "lax",
|
"same_site": "lax",
|
||||||
"secret": "{{var_authelia_session_secret}}",
|
"secret": "{{var_authelia_session_secret}}",
|
||||||
"expiration": "1h",
|
"expiration": "1h",
|
||||||
"inactivity": "5m",
|
"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": {
|
"regulation": {
|
||||||
"max_retries": 3,
|
"max_retries": 3,
|
||||||
|
|
|
@ -23,6 +23,14 @@
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"mandatory": false
|
"mandatory": false
|
||||||
},
|
},
|
||||||
|
"domain": {
|
||||||
|
"type": "string",
|
||||||
|
"mandatory": false,
|
||||||
|
},
|
||||||
|
"redirect_url": {
|
||||||
|
"type": "string",
|
||||||
|
"mandatory": false
|
||||||
|
},
|
||||||
"session_domain": {
|
"session_domain": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"mandatory": false
|
"mandatory": false
|
||||||
|
|
Loading…
Add table
Reference in a new issue