feat: new services and fixes

This commit is contained in:
Clément Désiles
2025-12-20 20:52:24 +01:00
parent d8eb53f096
commit 787c171f65
19 changed files with 301 additions and 22 deletions
+2 -2
View File
@@ -108,7 +108,7 @@
- name: Deploy nginx vhost configuration for Immich
ansible.builtin.template:
src: nginx-vhost.conf.j2
dest: /etc/nginx/conf.d/immich.conf
dest: "{{ nginx_conf_dir }}/immich.conf"
owner: root
group: root
mode: "0644"
@@ -117,7 +117,7 @@
- name: Remove nginx vhost configuration for Immich
ansible.builtin.file:
path: /etc/nginx/conf.d/immich.conf
path: "{{ nginx_conf_dir }}/immich.conf"
state: absent
when: not immich_nginx_enabled
notify: Reload nginx