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" %}
|
{% 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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue