Removing Nginx Authorization header unset because it breaks with a user defined index endpoint
Signed-off-by: Antonio Mercado <amercado@thinknode.com>
This commit is contained in:
parent
f63313de1f
commit
b450b42c25
1 changed files with 1 additions and 1 deletions
|
@ -3,5 +3,5 @@ proxy_set_header Host $http_host; # required for docker client's
|
||||||
proxy_set_header X-Real-IP $remote_addr; # pass on real client's IP
|
proxy_set_header X-Real-IP $remote_addr; # pass on real client's IP
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
proxy_set_header Authorization ""; # see https://github.com/docker/docker-registry/issues/170
|
proxy_set_header Authorization ""; # For basic auth through nginx in v1 to work, please comment this line
|
||||||
proxy_read_timeout 900;
|
proxy_read_timeout 900;
|
||||||
|
|
Loading…
Reference in a new issue