ansible-wordpress-host-init/roles/install-nginx/tasks/main.yml

16 lines
213 B
YAML
Raw Normal View History

2023-03-27 14:13:41 +00:00
---
- name: Install Nginx
apt:
pkg:
- nginx
- certbot
- python3-certbot-nginx
- name: Enable Nginx service
systemd:
name: nginx
daemon_reload: yes
enabled: yes
state: started