Fix conditionals and file name
This commit is contained in:
parent
8f7a238b69
commit
5af26c7ccf
2 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@
|
||||||
mode: 0644
|
mode: 0644
|
||||||
loop:
|
loop:
|
||||||
- add_headers.conf
|
- add_headers.conf
|
||||||
- letsentcrypt.conf
|
- letsencrypt.conf
|
||||||
notify: reload nginx
|
notify: reload nginx
|
||||||
|
|
||||||
- name: "Configuration | Copy configuration templates"
|
- name: "Configuration | Copy configuration templates"
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
- reverse_proxy.conf
|
- reverse_proxy.conf
|
||||||
- ssl.conf
|
- ssl.conf
|
||||||
notify: reload nginx
|
notify: reload nginx
|
||||||
when: nginx_type is 'gateway' or nginx_type is 'standalone'
|
when: nginx_type == 'gateway' or nginx_type == 'standalone'
|
||||||
|
|
||||||
- name: "Configuration | Copy request limit configuration"
|
- name: "Configuration | Copy request limit configuration"
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
|
@ -39,4 +39,4 @@
|
||||||
dest: /etc/nginx/conf.d/
|
dest: /etc/nginx/conf.d/
|
||||||
mode: 0644
|
mode: 0644
|
||||||
notify: reload nginx
|
notify: reload nginx
|
||||||
when: nginx_type is 'gateway' or nginx_type is 'standalone'
|
when: nginx_type == 'gateway' or nginx_type == 'standalone'
|
||||||
|
|
Loading…
Reference in a new issue