Merge pull request #324 from Zokormazo/extra_settings_quote

Add quotes to string type extra_settings
This commit is contained in:
Shane McDonald
2021-05-26 12:06:02 -04:00
committed by GitHub

View File

@@ -90,7 +90,11 @@ data:
BROADCAST_WEBSOCKET_PROTOCOL = 'http'
{% for item in extra_settings | default([]) %}
{% if item.value is string %}
{{ item.setting }} = '{{ item.value }}'
{% else %}
{{ item.setting }} = {{ item.value }}
{% endif %}
{% endfor %}
nginx_conf: |