Fix template path issues
This commit is contained in:
parent
fd7a7fa592
commit
fb36b5b643
@ -5,18 +5,32 @@
|
|||||||
dest: /etc/nginx/nginx.conf
|
dest: /etc/nginx/nginx.conf
|
||||||
notify: "(Handler: All OSs) Reload NGINX"
|
notify: "(Handler: All OSs) Reload NGINX"
|
||||||
|
|
||||||
|
- name: "(Setup: All NGINX) Ensures /etc/nginx/conf.d/http dir exists"
|
||||||
|
file:
|
||||||
|
path: /etc/nginx/conf.d/http
|
||||||
|
state: directory
|
||||||
|
when: http_template_enable
|
||||||
|
|
||||||
- name: "(Setup: All NGINX) Dynamically Generate NGINX HTTP Configuration Files"
|
- name: "(Setup: All NGINX) Dynamically Generate NGINX HTTP Configuration Files"
|
||||||
template:
|
template:
|
||||||
src: "{{ item }}"
|
src: "{{ item }}"
|
||||||
dest: /etc/nginx/conf.d/{{ item | basename | regex_replace('\.j2','') }}
|
dest: /etc/nginx/conf.d/http/{{ item | basename | regex_replace('\.j2','') }}
|
||||||
with_fileglob:
|
with_fileglob:
|
||||||
- "../templates/http/*.j2"
|
- "../templates/http/*.j2"
|
||||||
|
when: http_template_enable
|
||||||
notify: "(Handler: All OSs) Reload NGINX"
|
notify: "(Handler: All OSs) Reload NGINX"
|
||||||
|
|
||||||
|
- name: "(Setup: All NGINX) Ensures /etc/nginx/conf.d/stream dir exists"
|
||||||
|
file:
|
||||||
|
path: /etc/nginx/conf.d/stream
|
||||||
|
state: directory
|
||||||
|
when: stream_template_enable
|
||||||
|
|
||||||
- name: "(Setup: All NGINX) Dynamically Generate NGINX Stream Configuration Files"
|
- name: "(Setup: All NGINX) Dynamically Generate NGINX Stream Configuration Files"
|
||||||
template:
|
template:
|
||||||
src: "{{ item }}"
|
src: "{{ item }}"
|
||||||
dest: /etc/nginx/conf.d/{{ item | basename | regex_replace('\.j2','') }}
|
dest: /etc/nginx/conf.d/stream/{{ item | basename | regex_replace('\.j2','') }}
|
||||||
with_fileglob:
|
with_fileglob:
|
||||||
- "../templates/stream/*.j2"
|
- "../templates/stream/*.j2"
|
||||||
|
when: stream_template_enable
|
||||||
notify: "(Handler: All OSs) Reload NGINX"
|
notify: "(Handler: All OSs) Reload NGINX"
|
||||||
|
Loading…
Reference in New Issue
Block a user