fix incorrect path in docker-registry-proxy template
Signed-off-by: Adam Miller <admiller@redhat.com>
This commit is contained in:
parent
514c1dcc6e
commit
616648a476
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue