This commit is contained in:
2025-05-19 13:22:38 +02:00
commit ed67e43dd4
5 changed files with 99 additions and 0 deletions

14
install.yml Normal file
View File

@@ -0,0 +1,14 @@
---
- hosts: all
tasks:
- name: Install nginx
ansible.builtin.dnf:
name: nginx
- name: Start nginx
ansible.builtin.systemd:
name: nginx
state: started
enabled: true