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