ansible-base/roles/authelia/defaults/main.json

46 lines
806 B
JSON
Raw Normal View History

2023-12-10 14:33:45 +01:00
{
2025-10-07 15:58:18 +02:00
"cfg_authelia_defaults": {
"listen_address": "0.0.0.0",
"users_file_path": "/var/authelia/users.yml",
"log_file_path": "/var/authelia/log.jsonl",
"storage": {
"kind": "sqlite",
"data": {
2025-10-07 16:24:43 +02:00
"path": "/var/authelia/state.db"
2025-10-07 15:58:18 +02:00
}
},
"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": {
2025-10-07 17:17:01 +02:00
"long": {
"access_token": "2d",
"refresh_token": "3d"
}
2025-10-07 15:58:18 +02:00
}
},
2025-10-07 16:04:07 +02:00
"cors_endpoints": [
"authorization",
"token",
"revocation",
"introspection",
"userinfo"
]
2025-10-07 15:58:18 +02:00
}
}
2023-12-10 14:33:45 +01:00
}