2019-08-15 07:27:57 +00:00
|
|
|
---
|
2020-11-25 11:38:20 +00:00
|
|
|
- name: Copy nginx.cong configuration
|
2020-04-15 23:03:42 +00:00
|
|
|
template: src=files/nginx/nginx.conf dest=/etc/nginx/nginx.conf
|
|
|
|
|
2019-08-15 07:27:57 +00:00
|
|
|
- name: Copy index.html file
|
2020-04-15 23:03:42 +00:00
|
|
|
template: src=files/nginx/index.html dest=/var/www/html
|
2019-08-15 07:27:57 +00:00
|
|
|
notify:
|
|
|
|
- restart nginx
|
2020-04-15 23:03:42 +00:00
|
|
|
|