nginx proxy_pass がアプリケーションからの 302 で壊れる

nginx proxy_pass がアプリケーションからの 302 で壊れる

そこで、nginx をリバース プロキシとして実行します。これは、docker 化されたアプリケーションを指しています。

私の設定の一部は機能し、http://localhost/bstack1アプリケーションに渡されるのはhttp://ローカルホスト/(パス内の 'bstack1' は無視します)。

ここで問題が起こります。アプリケーションは/loginのログインページに302を返します。http://localhost/bstack1/ログインブラウザにはhttp://localhost/ログイン場所と一致しなくなったため、これは機能しなくなります。

異なるディレクトリ パスで実行されるアプリケーションがいくつかあります。

# Default
server {
  listen 80 default_server;

  server_name localhost;
  root /var/www/html;

  charset UTF-8;

   location /bstack1/ {
    proxy_set_header Host $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_buffering off;
    proxy_request_buffering off;
    proxy_http_version 1.1;
    proxy_intercept_errors on;
    proxy_pass http://bstack1_bookstack_1/; # note the trailing slash here, it matters!
  }

  error_page 404 /backend-not-found.html;
  location = /backend-not-found.html {
    allow   all;
  }
  location / {
    return 404;
  }

  access_log off;
  log_not_found off;
  error_log  /var/log/nginx/error.log error;
}

答え1

proxy_redirectここで述べられているように、ブロック内にディレクティブが必要だと思いますlocation:

https://stackoverflow.com/a/26025618

おそらく次の内容で十分でしょう:

proxy_redirect default;

関連情報