Finish moving logic and variables from nginx_tls_vhosts to nginx_vhosts

Everything is TLS now (whether self-signed or not), so it's pointless
to distinguish.

Signed-off-by: Alan Orth <alan.orth@gmail.com>
This commit is contained in:
2015-12-10 00:14:47 +02:00
parent 7b9536838c
commit 41547defb9
5 changed files with 94 additions and 92 deletions

View File

@ -11,8 +11,8 @@
- name: Copy php5-fpm pool config
template: src=pool.conf.j2 dest=/etc/php5/fpm/pool.d/{{ item.nginx_domain_name }}.conf owner=root group=root mode=0644
with_items: nginx_tls_vhosts
when: nginx_tls_vhosts is defined
with_items: nginx_vhosts
when: nginx_vhosts is defined
notify: restart php5-fpm
tags: php5-fpm