當我將 Nginx 伺服器映射到主機和來賓上的不同端口時,位置重定向遵循來賓端口,而不是請求的 uri 中的端口。
重現步驟:
$ 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/
- 我得到什麼:
http://localhost/loveslash -> http://localhost:8080/loveslash/
- 我想要的是:
http://localhost/loveslash -> http://localhost/loveslash/
答案1
因為您使用的是預設端口,所以您可以指示 Nginx 在生成外部重定向時簡單地從 URL 中刪除端口號。
例如:
server {
listen 8080;
port_in_redirect off;
...
}
看這個文件了解詳情。