[pagure] donkey forgot to put quotes around strings.. config file blew up.. who knew?

This commit is contained in:
Stephen Smoogen 2019-07-12 14:24:30 +00:00
parent fe717a9a2a
commit c8855e76c1

View file

@ -79,9 +79,9 @@ GIT_URL_GIT = 'https://pagure.io/'
### The IP addresses allowed for the internal endpoints
{% if eth0_ipv6 is defined %}
IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', {{ eth0_ip }} , {{ eth0_ipv6 }}]
IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '{{ eth0_ip }}' , '{{ eth0_ipv6 }}']
{% elif eth0_ip is defined %}
IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', {{ eth0_ip }}]
IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1', '{{ eth0_ip }}']
{% else %}
IP_ALLOWED_INTERNAL = ['127.0.0.1', 'localhost', '::1']
{% endif %}