2016-01-12 00:20:42 +07:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: TEMPLATE | Deploy nginx.conf
|
|
|
|
template: >
|
|
|
|
src=etc/nginx/nginx.conf.j2
|
2016-03-05 21:07:39 +07:00
|
|
|
dest="{{ nginx_etc_dir }}/nginx.conf"
|
2016-01-12 00:20:42 +07:00
|
|
|
notify: reload nginx
|
|
|
|
|
|
|
|
- name: TEMPLATE | Deploy all helpers
|
|
|
|
template: >
|
|
|
|
src={{ item }}
|
|
|
|
dest={{ nginx_helper_dir }}/{{ item | basename | regex_replace('\.j2$','') }}
|
|
|
|
with_fileglob: '../templates/etc/nginx/helper/*.j2'
|
|
|
|
notify: reload nginx
|
|
|
|
|
|
|
|
- name: TEMPLATE | Deploy custom http configuration
|
|
|
|
template: >
|
|
|
|
src=etc/nginx/conf.d/custom.conf.j2
|
2016-03-05 21:07:39 +07:00
|
|
|
dest="{{ nginx_etc_dir }}/conf.d/custom.conf"
|
2016-01-12 00:20:42 +07:00
|
|
|
notify: reload nginx
|
|
|
|
|