Move upstream templates to conf.d

pull/35/head
Emilien Mantel 2017-10-26 11:09:21 +02:00
parent 463ce45105
commit 36652f4742
3 changed files with 2 additions and 2 deletions

View File

@ -2,14 +2,14 @@
- name: TEMPLATE | Deploy PHP upstream to Nginx
template:
src: "etc/nginx/upstream/php.conf.j2"
src: "etc/nginx/conf.d/php.conf.j2"
dest: "{{ nginx_etc_dir }}/conf.d/php.conf"
when: nginx_php | length > 0
notify: reload nginx
- name: TEMPLATE | Deploy other upstreams
template:
src: "etc/nginx/upstream/upstream.conf.j2"
src: "etc/nginx/conf.d/_upstream.conf.j2"
dest: "{{ nginx_etc_dir }}/conf.d/upstream-{{ item.name }}.conf"
with_items: "{{ nginx_upstreams }}"
when: item.state is not defined or item.state == 'present'