[pagure] donkey forgot to put quotes around strings.. config file blew up.. who knew?
This commit is contained in:
parent
fe717a9a2a
commit
c8855e76c1
1 changed files with 2 additions and 2 deletions
|
@ -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 %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue