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.
18 lines
321 B
YAML
18 lines
321 B
YAML
|
1 year ago
|
---
|
||
|
|
- 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
|