ansible-wordpress-host-init/roles/install-nginx/tasks/main.yml
David Petric 2d6606c0a4 init
2023-03-27 16:13:41 +02:00

16 lines
213 B
YAML

---
- name: Install Nginx
apt:
pkg:
- nginx
- certbot
- python3-certbot-nginx
- name: Enable Nginx service
systemd:
name: nginx
daemon_reload: yes
enabled: yes
state: started