Initial commit

This commit is contained in:
nd 2017-10-07 00:11:35 +02:00
commit 06e6de1680
21 changed files with 646 additions and 0 deletions

7
handlers/main.yml Normal file
View file

@ -0,0 +1,7 @@
---
- name: restart nginx
service: name=nginx state=restarted
- name: delete nginx index.nginx-debian.html
file: path=/var/www/html/index.nginx-debian.html state=absent
- name: delete nginx default config
file: path=/etc/nginx/sites-enabled/default state=absent