ansible-role-nginx/tasks/conf/cleanup-config.yml
2019-10-17 21:21:17 +02:00

9 lines
211 B
YAML

---
- name: "(Setup: All OSs) Remove NGINX configuration files"
file:
path: "{{ item }}"
state: absent
with_items:
- "{{ nginx_cleanup_config_path }}"
notify: "(Handler: All OSs) Reload NGINX"