25 lines
751 B
YAML
25 lines
751 B
YAML
---
|
|
|
|
authelia_run_user:
|
|
authelia_run_group:
|
|
|
|
authelia_container_base_volumes: >-2
|
|
{{ [ authelia_config_file + ":/config/configuration.yml:ro"]
|
|
+ ([ authelia_sqlite_storage_file + ":" + authelia_config_storage_local_path + ":z" ])
|
|
if authelia_config_storage_local_path | default(false, true) else []
|
|
}}
|
|
|
|
authelia_container_base_labels:
|
|
version: "{{ authelia_version }}"
|
|
|
|
authelia_config: "{{ authelia_base_config | combine(authelia_extra_config) }}"
|
|
authelia_base_config:
|
|
theme: "{{ authelia_config_theme }}"
|
|
jwt_secret: "{{ authelia_config_jwt_secret }}"
|
|
default_redirection_url: "{{ authelia_config_default_redirection_url }}"
|
|
|
|
authelia_config_server:
|
|
authelia_config_server_tls:
|
|
authelia_config_totp:
|
|
authelia_config_webauthn:
|