add theme selection

This commit is contained in:
= 2025-07-18 23:32:54 +02:00
parent 6c88377d76
commit 3be638bfed
2 changed files with 3 additions and 0 deletions

View file

@ -7,6 +7,7 @@
# ---------------------
container_authelia_version: latest # Authelia container image tag/version
container_authelia_domain: authelia.example.com # Fully Qualified Domain Name (FQDN) for Authelia
container_authelia_theme: "dark" # dark, light or grey theme
# ---------------------
# Server Settings

View file

@ -1,6 +1,8 @@
server:
address: 'tcp4://:{{ container_authelia_server_port | default(9091) }}'
theme: {{ container_authelia_theme }}
log:
level: {{ container_authelia_log_level | default('debug') }}
file_path: '{{ container_authelia_log_file_path | default("/var/log/authelia/authelia.log") }}'