Registry V2 구성

484 단어
미러 업로드, 미러 삭제, Request 제한method, 이 몇 가지 다 써야 돼.
if ( $request_method !~ ^(GET|POST|HEAD|PUT|DELETE|PATCH)$ ) {
    return 403;
}

proxy header에서 SSL, Proto를 사용하면https를 씁니다.
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

좋은 웹페이지 즐겨찾기