Wenn ich einen Nginx-Server mit unterschiedlichen Ports auf Host und Gast zuordne, folgt die Standortumleitung dem Port des Gastes statt dem Port der angeforderten URI.
Schritt zur Reproduktion:
$ cat /tmp/default.conf
server {
listen 8080;
server_name localhost;
location ~ ^/loveslash$ {
return 301 $request_uri/;
}
location ~ ^/loveslash/$ {
add_header Content-Type text/plain;
return 200 'yayy!';
}
location / {
add_header Content-Type text/plain;
return 200 '¯\_(ツ)_/¯';
}
}
$ docker run --name some-nginx -v /tmp/default.conf:/etc/nginx/conf.d/default.conf:ro -p 80:8080 --rm nginx
$ curl -i http://localhost/loveslash | grep Location
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 169 100 169 0 0 165k 0 --:--:-- --:--:-- --:--:-- 165k
Location: http://localhost:8080/loveslash/
- Was ich bekomme:
http://localhost/loveslash -> http://localhost:8080/loveslash/
- Was ich möchte:
http://localhost/loveslash -> http://localhost/loveslash/
Antwort1
Da Sie Standardports verwenden, können Sie Nginx anweisen, beim Generieren einer externen Weiterleitung einfach die Portnummer aus der URL zu entfernen.
Zum Beispiel:
server {
listen 8080;
port_in_redirect off;
...
}
Sehendieses Dokumentfür Details.