nginx/tasks/purge.yml

27 lines
507 B
YAML

---
- name: Purge Nginx
apt:
state: absent
purge: true
name:
- libnginx-mod-http-geoip
- libnginx-mod-http-geoip2
- libnginx-mod-stream
- nginx
- nginx-common
- nginx-core
- nginx-full
- name: Delete Nginx configuration
file:
state: absent
path: '{{ nginx__dir_etc }}'
- name: Delete additional files
file:
state: absent
path: '{{ nginx__dir_www_html }}/{{ item }}'
with_items:
- 'maintenance.html'
- 'maintenance.jpg'