blob: 3401ba0d86c651dbdc3c64b62d3ce5a6a05c03c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
---
- name: install nginx packages
become: yes
apt: name="nginx"
- name: disable default site
become: yes
file: path="/etc/nginx/sites-enabled/default" state="absent"
notify: restart nginx
- name: create http directory
become: yes
file: path="{{nginx_html_root}}" state="directory"
- name: install root files
become: yes
copy: src="{{nginx_html_src}}" dest="{{nginx_html_root}}"
- name: enable nginx service
become: yes
systemd: name="nginx" enabled="yes" state="started"
|