add theme selection
This commit is contained in:
parent
6c88377d76
commit
3be638bfed
2 changed files with 3 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
||||||
# ---------------------
|
# ---------------------
|
||||||
container_authelia_version: latest # Authelia container image tag/version
|
container_authelia_version: latest # Authelia container image tag/version
|
||||||
container_authelia_domain: authelia.example.com # Fully Qualified Domain Name (FQDN) for Authelia
|
container_authelia_domain: authelia.example.com # Fully Qualified Domain Name (FQDN) for Authelia
|
||||||
|
container_authelia_theme: "dark" # dark, light or grey theme
|
||||||
|
|
||||||
# ---------------------
|
# ---------------------
|
||||||
# Server Settings
|
# Server Settings
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
server:
|
server:
|
||||||
address: 'tcp4://:{{ container_authelia_server_port | default(9091) }}'
|
address: 'tcp4://:{{ container_authelia_server_port | default(9091) }}'
|
||||||
|
|
||||||
|
theme: {{ container_authelia_theme }}
|
||||||
|
|
||||||
log:
|
log:
|
||||||
level: {{ container_authelia_log_level | default('debug') }}
|
level: {{ container_authelia_log_level | default('debug') }}
|
||||||
file_path: '{{ container_authelia_log_file_path | default("/var/log/authelia/authelia.log") }}'
|
file_path: '{{ container_authelia_log_file_path | default("/var/log/authelia/authelia.log") }}'
|
||||||
|
|
Loading…
Add table
Reference in a new issue