NGINX: 400 纯 HTTP 请求已发送到 HTTPS 端口

NGINX: 400 纯 HTTP 请求已发送到 HTTPS 端口

我将 nginx 设置为 proxypass 到 docker 注册表,http 协议有效,但如果我设置 https 我有:400 The plain HTTP request was sent to HTTPS port

这是我的 nginx 配置文件:

upstream docker-registry {
 server 127.0.0.1:5000;
}

server {
 listen 443 ssl;
 server_name docker-registry.mydomain.it;

  ssl_certificate /etc/ssl/certs/docker-registry;
  ssl_certificate_key /etc/ssl/private/docker-registry;

 proxy_set_header Host       $http_host;   # required for Docker client sake
 proxy_set_header X-Real-IP  $remote_addr; # pass on real client IP

 client_max_body_size 0; # disable any limits to avoid HTTP 413 for large image uploads

 # required to avoid HTTP 411: see Issue #1486 (https://github.com/dotcloud/docker/issues/1486)
 chunked_transfer_encoding on;

 location / {
     # let Nginx know about our auth file
     auth_basic              "Restricted";
     auth_basic_user_file    docker-registry.htpasswd;
     proxy_pass http://docker-registry;
 }
 location /_ping {
     auth_basic off;
     proxy_pass http://docker-registry;
 }
 location /v1/_ping {
     auth_basic off;
     proxy_pass http://docker-registry;
 }

}

答案1

添加:

proxy_set_header X-Forwarded-Proto $scheme;

答案2

问题是 docker-registry 配置,我已经解决了将行添加-H tcp://127.0.0.1:2375 -H unix:///var/run/docker.sock --insecure-registry localhost:5000到 /etc/sysconfig/docker 下的问题OPTIONS

相关内容