mirror of
https://github.com/geerlingguy/ansible-role-nginx.git
synced 2024-11-05 09:01:38 +01:00
23 lines
590 B
YAML
23 lines
590 B
YAML
|
---
|
||
|
- name: Remove default nginx vhost config file (if configured).
|
||
|
file:
|
||
|
path: "{{ nginx_default_vhost_path }}"
|
||
|
state: absent
|
||
|
when: nginx_remove_default_vhost
|
||
|
notify: restart nginx
|
||
|
|
||
|
- name: Add managed vhost config file (if any vhosts are configured).
|
||
|
template:
|
||
|
src: vhosts.j2
|
||
|
dest: "{{ nginx_vhost_path }}/vhosts"
|
||
|
mode: 0644
|
||
|
when: nginx_vhosts
|
||
|
notify: restart nginx
|
||
|
|
||
|
- name: Remove managed vhost config file (if no vhosts are configured).
|
||
|
file:
|
||
|
path: "{{ nginx_vhost_path }}/vhosts"
|
||
|
state: absent
|
||
|
when: not nginx_vhosts
|
||
|
notify: restart nginx
|