feat: add nginx playbook
This commit is contained in:
9
opdracht-2/nginx.yml
Normal file
9
opdracht-2/nginx.yml
Normal 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
|
Reference in New Issue
Block a user