From 7ba2b487bb3a71f40fede8a5e1714c049e882a7a Mon Sep 17 00:00:00 2001 From: Ditmar Visser Date: Wed, 4 Jun 2025 11:56:40 +0000 Subject: [PATCH] feat: add nginx playbook --- opdracht-2/nginx.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 opdracht-2/nginx.yml diff --git a/opdracht-2/nginx.yml b/opdracht-2/nginx.yml new file mode 100644 index 0000000..8789d32 --- /dev/null +++ b/opdracht-2/nginx.yml @@ -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