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