Quando mapeio o servidor Nginx com portas diferentes no host e no convidado, o redirecionamento de localização segue a porta dos convidados em vez da porta do uri solicitado.
Passo para reproduzir:
$ 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/
- O que eu ganho:
http://localhost/loveslash -> http://localhost:8080/loveslash/
- O que eu quero:
http://localhost/loveslash -> http://localhost/loveslash/
Responder1
Como você está usando portas padrão, você pode instruir o Nginx a simplesmente remover o número da porta da URL ao gerar um redirecionamento externo.
Por exemplo:
server {
listen 8080;
port_in_redirect off;
...
}
Veresse documentopara detalhes.