feat: add nginx playbook

This commit is contained in:
Ditmar Visser
2025-06-04 11:56:40 +00:00
parent a3e67a7f11
commit 7ba2b487bb

9
opdracht-2/nginx.yml Normal file
View File

@ -0,0 +1,9 @@
- name: Install nginx on remote host
hosts: all
become: true
tasks:
- name: Install nginx
ansible.builtin.apt:
name: nginx
state: present
update_cache: true