web-dev-qa-db-ja.com

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プロキシは上流の応答を書き換えてhttp://example.com:9001/site/からhttps://example.com/site/

何を忘れましたか?

3
alumaster

upstreamブロックを使用していて、nginxproxy_redirect defaultステートメントから必要な文字列を取得できないため、proxy_passは期待どおりに動作しません。あなたはそれを明示的に指定することができます:

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

詳細は このドキュメント を参照してください。


または、アップストリームサーバーに、リダイレクトレスポンスでのポートの指定を停止するように指示します。

port_in_redirect off;

詳細は このドキュメント を参照してください。

1
Richard Smith