美文网首页
Registry V2配置

Registry V2配置

作者: 那不勒斯抹茶羽衣南瓜饼 | 来源:发表于2017-03-22 14:52 被阅读0次

    上传镜像,删除镜像,如果限制request_method,这几项都要写上

    if ( $request_method !~ ^(GET|POST|HEAD|PUT|DELETE|PATCH)$ ) {
        return 403;
    }
    

    proxy header里,如果用了SSL,Proto写https,要不会一直auth error

    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-Host $http_host;
    proxy_set_header X-Forwarded-Proto "https";
    proxy_set_header X-Real-IP $remote_addr;
    

    可以围观这里
    https://github.com/docker/distribution/issues/970#issuecomment-139485550

    相关文章

      网友评论

          本文标题:Registry V2配置

          本文链接:https://www.haomeiwen.com/subject/uhuonttx.html