This commit is contained in:
David Petric
2023-03-27 16:13:41 +02:00
parent a53d25caa9
commit 2d6606c0a4
11 changed files with 2094 additions and 0 deletions

View File

@ -0,0 +1,15 @@
---
- name: Install Nginx
apt:
pkg:
- nginx
- certbot
- python3-certbot-nginx
- name: Enable Nginx service
systemd:
name: nginx
daemon_reload: yes
enabled: yes
state: started