mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-12-22 12:35:51 +00:00
Remove useless quotes around ssl_ciphers value
Not sure if it breaks with them or not, but no other directive uses quotes and the nginx docs show examples without quotes, so we're being consistent with all of that.
This commit is contained in:
parent
5822ba0c01
commit
f7ae050eaf
@ -70,7 +70,7 @@ server {
|
|||||||
|
|
||||||
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
||||||
{% if matrix_nginx_proxy_ssl_ciphers != "" %}
|
{% if matrix_nginx_proxy_ssl_ciphers != "" %}
|
||||||
ssl_ciphers "{{ matrix_nginx_proxy_ssl_ciphers }}";
|
ssl_ciphers {{ matrix_nginx_proxy_ssl_ciphers }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ server {
|
|||||||
|
|
||||||
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
||||||
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
||||||
ssl_ciphers "{{ matrix_nginx_proxy_ssl_ciphers }}";
|
ssl_ciphers {{ matrix_nginx_proxy_ssl_ciphers }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ server {
|
|||||||
|
|
||||||
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
||||||
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
||||||
ssl_ciphers "{{ matrix_nginx_proxy_ssl_ciphers }}";
|
ssl_ciphers {{ matrix_nginx_proxy_ssl_ciphers }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ server {
|
|||||||
|
|
||||||
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
||||||
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
||||||
ssl_ciphers "{{ matrix_nginx_proxy_ssl_ciphers }}";
|
ssl_ciphers {{ matrix_nginx_proxy_ssl_ciphers }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ server {
|
|||||||
|
|
||||||
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
||||||
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
||||||
ssl_ciphers "{{ matrix_nginx_proxy_ssl_ciphers }}";
|
ssl_ciphers {{ matrix_nginx_proxy_ssl_ciphers }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
||||||
|
|
||||||
|
@ -206,7 +206,7 @@ server {
|
|||||||
|
|
||||||
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
||||||
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
||||||
ssl_ciphers "{{ matrix_nginx_proxy_ssl_ciphers }}";
|
ssl_ciphers {{ matrix_nginx_proxy_ssl_ciphers }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
||||||
|
|
||||||
@ -241,7 +241,7 @@ server {
|
|||||||
|
|
||||||
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
ssl_protocols {{ matrix_nginx_proxy_ssl_protocols }};
|
||||||
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
{% if matrix_nginx_proxy_ssl_ciphers != '' %}
|
||||||
ssl_ciphers "{{ matrix_nginx_proxy_ssl_ciphers }}";
|
ssl_ciphers {{ matrix_nginx_proxy_ssl_ciphers }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
ssl_prefer_server_ciphers {{ matrix_nginx_proxy_ssl_prefer_server_ciphers }};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user