에서 실행되는 서비스 (도커 레지스트리)가 port 5000
있는데 http 요청을에서 (으) 8080
로 리디렉션하기 위해 nginx를 설치 했습니다 5000
. 내가 한 경우에 컬 localhost:5000
이 작동하지만이에 컬을 할 때 localhost:8080
내가 얻을 잘못된 게이트웨이 오류가 발생했습니다.
nginx 설정 파일 :
upstream docker-registry {
server localhost:5000;
}
server {
listen 8080;
server_name registry.mydomain.com;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
client_max_body_size 0;
chunked_transfer_encoding on;
location / {
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;
}
}
에서 /var/log/nginx/error.log
I 있습니다 :
[crit] 15595#0: *1 connect() to [::1]:5000 failed (13: Permission denied) while connecting to upstream, client: 127.0.0.1, server: registry.mydomain.com, request: "GET / HTTP/1.1", upstream: "http://[::1]:5000/", host: "localhost:8080"
어떤 생각?