Nginx プロキシ/アップストリーム リダイレクトが間違ったポートとプロトコルを使用する

Nginx プロキシ/アップストリーム リダイレクトが間違ったポートとプロトコルを使用する

私は、NGINX サーバーを他の NGINX サーバーの SSL プロキシとして使用しています。残念ながら、リクエストがアップストリーム サーバーによってリダイレクトされると、場所フィールドに間違った宛先ポートが含まれます。

curl -v "https://example.com/site":

> GET /site HTTP/2
> Host: example.com
> User-Agent: curl/7.58.0
> Accept: */*
> 
* Connection state changed (MAX_CONCURRENT_STREAMS updated)!
< HTTP/2 301 
< server: nginx
< date: Sun, 18 Mar 2018 20:01:44 GMT
< content-type: text/html
< content-length: 178
< location: http://example.com:9101/site/
< strict-transport-security: max-age=15768000; includeSubDomains

NGINX プロキシ:

# Proxy: example.com
####################

server {
  listen 0.0.0.0:80;
  listen [::]:80;
  server_name example.com;
  root /srv/www/_empty;
  location / { return 301 https://example.com$request_uri; }
}

upstream myupstream {
  server [::1]:9101;
}

server {
  listen 0.0.0.0:443 ssl http2;
  listen [::]:443 ssl http2;
  server_name example.com;
  ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
  ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
  root /srv/www/_empty;

  location / {

    proxy_set_header    Host                   $http_host;
    proxy_set_header    X-Real-IP              $remote_addr;
    proxy_set_header    X-Forwarded-For        $proxy_add_x_forwarded_for;
    proxy_set_header    X-Forwarded-Proto      $scheme;
    proxy_set_header    X-Frame-Options        "";
    proxy_set_header    X-Content-Type-Options "";
    proxy_pass          http://myupstream;
  }
}

NGINX アップストリーム サーバー:

# NGINX Site: example.com
#########################

server {
  # Server
  listen [::1]:9101;
  server_name example.com;

  # Root
  root /srv/www/example.com/staging;

  # Disable Caching
  sendfile off;

  # Charset
  charset utf-8;

  # Default
  location / {
    index index.html;
    try_files $uri $uri/ =404;
  }
}

両方の NGINX インスタンスが同じマシン上で別々のマスター プロセスとして実行されています。その他はすべて完璧に動作します。

NGINX Proxy はアップストリーム応答を書き換えhttp://example.com:9001/site/て に変換すると考えましたhttps://example.com/site/

何を忘れたのでしょうか?

答え1

proxy_redirect defaultupstreamブロックを使用していて、ステートメントnginxから必要な文字列を取得できないため、期待どおりには動作しませんproxy_pass。次のように明示的に指定できます。

proxy_redirect http://example.com:9101/ /;

見るこのドキュメント多くのための。


あるいは、上流サーバーリダイレクト応答でポートの指定を停止するには、次のようにします。

port_in_redirect off;

見るこのドキュメント多くのための。

関連情報