feat(authelia): allow customizing authelia by mapping the asset folder from the host

This commit is contained in:
2022-08-26 08:48:36 +02:00
parent 6658d7226c
commit d4858c89f4
3 changed files with 7 additions and 0 deletions

View File

@ -14,6 +14,7 @@
owner: "{{ item.owner | default(authelia_user) }}"
group: "{{ item.group | default(authelia_user) }}"
mode: "{{ item.mode | default('0750') }}"
when: item.path | default(false, true) | bool
loop:
- path: "{{ authelia_base_dir }}"
mode: "0755"
@ -21,6 +22,8 @@
mode: "0750"
- path: "{{ authelia_data_dir }}"
mode: "0750"
- path: "{{ authelia_asset_dir }}"
mode: "0750"
- name: Ensure config file is generated
copy: