Ich habe einen Dienst (Docker-Registrierung), der ausgeführt port 5000
wird. Ich habe nginx installiert, um die http-Anforderung von 8080
nach umzuleiten 5000
. Wenn ich eine Locke mache, localhost:5000
funktioniert es, aber wenn ich eine Locke mache, localhost:8080
bekomme ich einen Bad Gateway- Fehler.
Nginx-Konfigurationsdatei:
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;
}
}
In /var/log/nginx/error.log
ich habe:
[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"
Irgendeine Idee?