Skip to content

Commit 67e35f4

Browse files
authored
Merge pull request #26 from nginxinc/(bug)/replace-upload-variables
Replace *_upload_* with *_push_*
2 parents dab0e5d + 05fcff7 commit 67e35f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tasks/conf/push-config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
- name: "(Setup: All NGINX) Upload NGINX Main Configuration File"
2222
copy:
23-
src: "{{ main_upload_location }}"
23+
src: "{{ main_push_location }}"
2424
dest: /etc/nginx/nginx.conf
2525
notify: "(Handler: All OSs) Reload NGINX"
2626
when: main_push_enable
@@ -36,9 +36,9 @@
3636
src: "{{ item }}"
3737
dest: /etc/nginx/conf.d/http
3838
with_fileglob:
39-
- "{{ http_upload_location }}"
39+
- "{{ http_push_location }}"
4040
notify: "(Handler: All OSs) Reload NGINX"
41-
when: http_push_enablee
41+
when: http_push_enable
4242

4343
- name: "(Setup: All NGINX) Ensure NGINX Stream Directory Exists"
4444
file:
@@ -51,6 +51,6 @@
5151
src: "{{ item }}"
5252
dest: /etc/nginx/conf.d/stream
5353
with_fileglob:
54-
- "{{ stream_upload_location }}"
54+
- "{{ stream_push_location }}"
5555
notify: "(Handler: All OSs) Reload NGINX"
5656
when: stream_push_enable

0 commit comments

Comments
 (0)