fix incorrect path in docker-registry-proxy template

Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
Adam Miller 2016-04-08 21:24:26 +00:00
parent 514c1dcc6e
commit 616648a476

View file

@ -41,7 +41,7 @@
{% if auth.type == "ssl" %} {% if auth.type == "ssl" %}
SSLVerifyClient none SSLVerifyClient none
SSLCACertificateFile {{ auth.ssl.authca_dest }} SSLCACertificateFile {{ auth.ssl.destdir }}/{{ auth.ssl.authca_dest }}
{% endif %} {% endif %}
<Location /v2> <Location /v2>
Order deny,allow Order deny,allow
@ -49,7 +49,7 @@
{% if auth.type == "basic" %} {% if auth.type == "basic" %}
AuthName "Registry Authentication" AuthName "Registry Authentication"
AuthType basic AuthType basic
AuthUserFile {{ auth.basic.userfile_dest }} AuthUserFile {{ auth.basic.destdir }}/{{ auth.basic.userfile_dest }}
{% endif %} {% endif %}
{% if auth.type == "ssl" %} {% if auth.type == "ssl" %}
SSLVerifyClient require SSLVerifyClient require