myimmich/immich-ansible/roles/nginx/tasks/install.yml
2026-06-05 14:53:29 +02:00

15 lines
290 B
YAML

---
- name: Installer Nginx et Certbot
ansible.builtin.apt:
update_cache: true
name:
- nginx
- certbot
- python3-certbot-nginx
state: present
- name: Activer et démarrer Nginx
ansible.builtin.service:
name: nginx
state: started
enabled: true