ansible-base/roles/authelia/defaults/main.json
Christian Fraß 7c6ad2cef6 [int]
2025-10-07 17:17:01 +02:00

49 lines
918 B
JSON

{
"cfg_authelia_defaults": {
"listen_address": "0.0.0.0",
"users_file_path": "/var/authelia/users.yml",
"log_file_path": "/var/authelia/log.jsonl",
"domain": "authelia.example.org",
"redirect_url": "https://example.org",
"session_domain": "example.org",
"storage": {
"kind": "sqlite",
"data": {
"path": "/var/authelia/state.db"
}
},
"ntp_server": "time.cloudflare.com:123",
"password_reset": {
"enabled": false,
"custom_url": null
},
"notification": {
"kind": "file",
"data": {
"path": "/var/authelia/notifications"
}
},
"oidc": {
"lifespan": {
"default": {
"access_token": "1d",
"refresh_token": "1h"
},
"custom": {
"long": {
"access_token": "2d",
"refresh_token": "3d"
}
}
},
"cors_endpoints": [
"authorization",
"token",
"revocation",
"introspection",
"userinfo"
]
}
}
}