web-dev-qa-db-ja.com

ホストポート!=コンテナポートの場合、DockerマシンでNginxが書き換えます

ポート80でリッスンしているnginxをすべて実行している複数のDockerコンテナーを実行しようとしていますが、コンテナーポート80に異なるホストポートがマッピングされています。

末尾のスラッシュがないためにnginxがリダイレクトを行う場合を除いて、ほとんどの場合これは機能します。

server {
    listen 80;
    root /var/www;
    index index.html;
    location /docs {}
}

上記のnginx構成と、コンテナーポート80にマップされたホストポート8080でそれを実行しているDockerコンテナーを考えると、curl okを介してlocalhost:8080/docs /を取得できます。

> GET /docs/ HTTP/1.1
> User-Agent: curl/7.35.0
> Host: localhost:8080
> Accept: */*
>
< HTTP/1.1 200 OK
* Server nginx/1.9.5 is not blacklisted
< Server: nginx/1.9.5
< Date: Sat, 28 Nov 2015 17:27:05 GMT
< Content-Type: text/html
< Content-Length: 6431
< Last-Modified: Sat, 28 Nov 2015 17:17:06 GMT
< Connection: keep-alive
< ETag: "5659e192-191f"
< Accept-Ranges: bytes
<
... html page ...

しかし、localhost:8080/docsをリクエストすると、localhost/docs /へのリダイレクトが表示されます

> GET /docs HTTP/1.1
> User-Agent: curl/7.35.0
> Host: localhost:8080
> Accept: */*
>
< HTTP/1.1 301 Moved Permanently
* Server nginx/1.9.5 is not blacklisted
< Server: nginx/1.9.5
< Date: Sat, 28 Nov 2015 17:29:40 GMT
< Content-Type: text/html
< Content-Length: 184
< Location: http://localhost/docs/
< Connection: keep-alive
<
... html redirect page ...

リダイレクトを行うときにnginxに元のポートを保持させるにはどうすればよいですか?私はport_in_redirectとserver_name_in_redirectを見てみましたが、助けにはなりませんでした。


[〜#〜]編集[〜#〜]

https://forum.nginx.org/read.php?2,261216,261216#msg-261216 に基づくと、これは現在可能ではないようです。

10
Ibasa

最も簡単な解決策は、indexディレクティブを削除し、明示的または暗黙的な$uri/リダイレクトに依存しないことです。例えば:

server {
  listen 80;
  root /var/www;
  location /docs {
    try_files $uri $uri/index.html =404;
  }
}

リダイレクトを完全に回避するため、これは同じ動作ではありません。インデックスモジュールが提供するような末尾のスラッシュリダイレクトが必要な場合は、より複雑なソリューションが必要です。例えば:

server {
  listen 80;
  root /var/www;
  location /docs {
    try_files $uri @redirect;
  }
  location @redirect {
    if ($uri ~* ^(.+)/$) { rewrite ^ $uri/index.html last; }
    if (-d $document_root$uri) { return $scheme://$Host:8080$uri/; }
    return 404;
  }
}
2
Richard Smith

HTTPクライアントは、ホストヘッダーにポートを配置します。リダイレクトを行うときにHostヘッダーの元の値を使用すると、期待どおりに機能するはずです。私は次のコードをテストし、あなたが要求したとおりに動作しているように見えます:

location ~ ^.*[^/]$ {
    try_files $uri @rewrite;
}
location @rewrite {
    return 302 $scheme://$http_Host$uri/;
}

> GET /bla HTTP/1.1
> User-Agent: curl/7.29.0
> Host: localhost:8080
> Accept: */*
>
< HTTP/1.1 302 Moved Temporarily
< Server: nginx/1.9.7
< Date: Sun, 29 Nov 2015 06:23:35 GMT
< Content-Type: text/html
< Content-Length: 160
< Connection: keep-alive
< Location: http://localhost:8080/bla/
5

興味深い...私はこの問題に正確に遭遇し、 Richard Smithの回答 が示唆するようにそれを修正することができました:

root /var/www;
location = /docs {
    try_files $uri $uri/ =404;
}

唯一の違いは、index.html?を指定しないことです。

エラーコードを指定して、リダイレクトループを回避します。

Nginxのサポートからのフィードバックを待っています。

0

この単純な修正に従ってください

location /app {
    alias /usr/share/nginx/html/folder;
    if (-d $request_filename) {
        rewrite [^/]$ $scheme://$http_Host$uri/ permanent;
    }
}