You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
montpelliermaalsi2024/pipeline/nginx.yaml

18 lines
321 B
YAML

---
- name: Install Nginx and copy HTML file
hosts: webservers
become: yes
tasks:
- name: Update apt cache
apt:
update_cache: yes
- name: Install Nginx
apt:
name: nginx
state: present
- name: Restart Nginx
service:
name: nginx
state: restarted