ホストとゲストで異なるポートを持つ 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
デフォルトのポートを使用しているため、外部リダイレクトを生成するときに、URL からポート番号を削除するように Nginx に指示できます。
例えば:
server {
listen 8080;
port_in_redirect off;
...
}
見るこのドキュメント詳細については。