2025-10-07 15:58:18 +02:00
|
|
|
{
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"listen_address": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "0.0.0.0"
|
|
|
|
|
},
|
|
|
|
|
"jwt_secret": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"users_file_path": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "/var/authelia/users.yml"
|
|
|
|
|
},
|
|
|
|
|
"log_file_path": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "/var/authelia/log.jsonl"
|
|
|
|
|
},
|
|
|
|
|
"domain": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "authelia.example.org"
|
|
|
|
|
},
|
|
|
|
|
"redirect_url": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "https://example.org"
|
|
|
|
|
},
|
|
|
|
|
"session_domain": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "example.org"
|
|
|
|
|
},
|
|
|
|
|
"session_secret": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"storage_encryption_key": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"storage": {
|
|
|
|
|
"anyOf": [
|
|
|
|
|
{
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"kind": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": ["sqlite"]
|
|
|
|
|
},
|
|
|
|
|
"data": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"path": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "/var/authelia/state.db"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
],
|
|
|
|
|
"default": {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"kind"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"kind": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": ["postgresql"]
|
|
|
|
|
},
|
|
|
|
|
"data": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"host": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"ddefault": "localhost"
|
|
|
|
|
},
|
|
|
|
|
"port": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"default": 5432
|
|
|
|
|
},
|
|
|
|
|
"username": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "authelia_user"
|
|
|
|
|
},
|
|
|
|
|
"password": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"schema": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "authelia"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"password"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"kind",
|
|
|
|
|
"data"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"kind": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": ["mariadb"]
|
|
|
|
|
},
|
|
|
|
|
"data": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"host": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"ddefault": "localhost"
|
|
|
|
|
},
|
|
|
|
|
"port": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"default": 3306
|
|
|
|
|
},
|
|
|
|
|
"username": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "authelia_user"
|
|
|
|
|
},
|
|
|
|
|
"password": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"schema": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "authelia"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"password"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"kind",
|
|
|
|
|
"data"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"ntp_server": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"mandatory": false
|
|
|
|
|
},
|
|
|
|
|
"password_reset": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"enabled": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "boolean",
|
|
|
|
|
"default": false
|
|
|
|
|
},
|
|
|
|
|
"custom_url": {
|
|
|
|
|
"nullable": true,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": null
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
],
|
|
|
|
|
"default": {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"notification": {
|
|
|
|
|
"anyOf": [
|
|
|
|
|
{
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"kind": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": ["file"]
|
|
|
|
|
},
|
|
|
|
|
"data": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
],
|
|
|
|
|
"default": {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"kind"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"kind": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": ["smtp"]
|
|
|
|
|
},
|
|
|
|
|
"data": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"host": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "smtp.example.org"
|
|
|
|
|
},
|
|
|
|
|
"port": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "integer",
|
|
|
|
|
"default": 465
|
|
|
|
|
},
|
|
|
|
|
"username": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "authelia"
|
|
|
|
|
},
|
|
|
|
|
"password": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"sender": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "authelia@example.org"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"password"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"kind",
|
|
|
|
|
"data"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"oidc": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"hmac_secret": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"lifespan": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"default": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"access_token": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "1h"
|
|
|
|
|
},
|
|
|
|
|
"refresh_token": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"default": "1m"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
],
|
|
|
|
|
"default": {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"custom": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "object",
|
|
|
|
|
"properties": {
|
|
|
|
|
"access_token": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string"
|
|
|
|
|
},
|
|
|
|
|
"refresh_token": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"acces_token",
|
|
|
|
|
"refresh_token"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"required": [
|
|
|
|
|
],
|
|
|
|
|
"default": {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
],
|
|
|
|
|
"default": {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"cors_endpoints": {
|
|
|
|
|
"nullable": true,
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"nullable": false,
|
|
|
|
|
"type": "string",
|
|
|
|
|
"enum": [
|
|
|
|
|
"authorization",
|
|
|
|
|
"pushed-authorization-request",
|
|
|
|
|
"token",
|
|
|
|
|
"revocation",
|
|
|
|
|
"introspection",
|
|
|
|
|
"userinfo"
|
|
|
|
|
]
|
|
|
|
|
},
|
2025-10-07 16:04:07 +02:00
|
|
|
"default": [
|
|
|
|
|
"authorization",
|
|
|
|
|
"token",
|
|
|
|
|
"revocation",
|
|
|
|
|
"introspection",
|
|
|
|
|
"userinfo"
|
|
|
|
|
]
|
2025-10-07 15:58:18 +02:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"hmac_secret"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"required": [
|
|
|
|
|
"jwt_secret",
|
|
|
|
|
"session_secret",
|
|
|
|
|
"storage_encryption_key",
|
|
|
|
|
"oidc"
|
|
|
|
|
]
|
|
|
|
|
}
|