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

59 lines
1.1 KiB
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",
"domain": "authelia.example.org",
"redirect_url": "https://example.org",
"session_domain": "example.org",
"storage": {
"kind": "sqlite",
"data": {
"sqlite": {
"path": "/var/authelia/state.db"
},
"postgresql": {
"host": "localhost",
"port": 5432,
"username": "authelia_user",
"schema": "authelia"
},
"mariadb": {
"host": "localhost",
"port": 3306,
"username": "authelia_user",
"schema": "authelia"
}
}
},
"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 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
}