2018-02-20 21:28:14 +01:00
|
|
|
---
|
|
|
|
- name: "(Setup: All NGINX) Upload NGINX Main Configuration File"
|
|
|
|
copy:
|
2018-04-17 23:30:43 +02:00
|
|
|
src: "{{ main_push_location }}"
|
2018-02-20 21:28:14 +01:00
|
|
|
dest: /etc/nginx/nginx.conf
|
2018-04-18 02:21:31 +02:00
|
|
|
backup: yes
|
2018-02-20 21:28:14 +01:00
|
|
|
notify: "(Handler: All OSs) Reload NGINX"
|
2018-04-17 00:26:33 +02:00
|
|
|
when: main_push_enable
|
2018-02-20 21:28:14 +01:00
|
|
|
|
2018-04-05 23:32:37 +02:00
|
|
|
- name: "(Setup: All NGINX) Ensure NGINX HTTP Directory Exists"
|
|
|
|
file:
|
|
|
|
path: /etc/nginx/conf.d/http
|
|
|
|
state: directory
|
2018-04-17 00:26:33 +02:00
|
|
|
when: http_push_enable
|
2018-04-05 23:32:37 +02:00
|
|
|
|
2018-02-20 21:28:14 +01:00
|
|
|
- name: "(Setup: All NGINX) Upload NGINX HTTP Configuration Files"
|
|
|
|
copy:
|
|
|
|
src: "{{ item }}"
|
2018-04-05 23:32:37 +02:00
|
|
|
dest: /etc/nginx/conf.d/http
|
2018-04-18 02:21:31 +02:00
|
|
|
backup: yes
|
2018-02-20 21:28:14 +01:00
|
|
|
with_fileglob:
|
2018-04-17 23:30:43 +02:00
|
|
|
- "{{ http_push_location }}"
|
2018-02-20 21:28:14 +01:00
|
|
|
notify: "(Handler: All OSs) Reload NGINX"
|
2018-04-17 23:30:43 +02:00
|
|
|
when: http_push_enable
|
2018-02-20 21:28:14 +01:00
|
|
|
|
2018-04-05 23:32:37 +02:00
|
|
|
- name: "(Setup: All NGINX) Ensure NGINX Stream Directory Exists"
|
|
|
|
file:
|
|
|
|
path: /etc/nginx/conf.d/stream
|
|
|
|
state: directory
|
2018-04-17 00:26:33 +02:00
|
|
|
when: stream_push_enable
|
2018-04-05 23:32:37 +02:00
|
|
|
|
2018-02-20 21:28:14 +01:00
|
|
|
- name: "(Setup: All NGINX) Upload NGINX Stream Configuration Files"
|
|
|
|
copy:
|
|
|
|
src: "{{ item }}"
|
2018-04-05 23:32:37 +02:00
|
|
|
dest: /etc/nginx/conf.d/stream
|
2018-04-18 02:21:31 +02:00
|
|
|
backup: yes
|
2018-02-20 21:28:14 +01:00
|
|
|
with_fileglob:
|
2018-04-17 23:30:43 +02:00
|
|
|
- "{{ stream_push_location }}"
|
2018-02-20 21:28:14 +01:00
|
|
|
notify: "(Handler: All OSs) Reload NGINX"
|
2018-04-17 00:26:33 +02:00
|
|
|
when: stream_push_enable
|