41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
---
|
|
- name: "(Setup: All NGINX) Upload NGINX Main Configuration File"
|
|
copy:
|
|
src: "{{ nginx_main_push_location }}"
|
|
dest: /etc/nginx/nginx.conf
|
|
backup: yes
|
|
notify: "(Handler: All OSs) Reload NGINX"
|
|
when: nginx_main_push_enable
|
|
|
|
- name: "(Setup: All NGINX) Ensure NGINX HTTP Directory Exists"
|
|
file:
|
|
path: /etc/nginx/conf.d/http
|
|
state: directory
|
|
when: nginx_http_push_enable
|
|
|
|
- name: "(Setup: All NGINX) Upload NGINX HTTP Configuration Files"
|
|
copy:
|
|
src: "{{ item }}"
|
|
dest: /etc/nginx/conf.d/http
|
|
backup: yes
|
|
with_fileglob:
|
|
- "{{ nginx_http_push_location }}"
|
|
notify: "(Handler: All OSs) Reload NGINX"
|
|
when: nginx_http_push_enable
|
|
|
|
- name: "(Setup: All NGINX) Ensure NGINX Stream Directory Exists"
|
|
file:
|
|
path: /etc/nginx/conf.d/stream
|
|
state: directory
|
|
when: nginx_stream_push_enable
|
|
|
|
- name: "(Setup: All NGINX) Upload NGINX Stream Configuration Files"
|
|
copy:
|
|
src: "{{ item }}"
|
|
dest: /etc/nginx/conf.d/stream
|
|
backup: yes
|
|
with_fileglob:
|
|
- "{{ nginx_stream_push_location }}"
|
|
notify: "(Handler: All OSs) Reload NGINX"
|
|
when: nginx_stream_push_enable
|