add missing % for jinja2 if statment in docker-registry-proxy template

Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
Adam Miller 2016-04-07 22:34:05 +00:00
parent 2c76117b60
commit 5d2b0bad46

View file

@ -34,7 +34,7 @@
Order deny,allow
Allow from all
AuthName "Registry Authentication"
{% if auth.type == "basic" }
{% if auth.type == "basic" %}
AuthType basic
AuthUserFile {{ auth.basic.userfile_dest }}
{% endif %}