nginx proxy_pass 在應用程式中出現 302 錯誤

nginx proxy_pass 在應用程式中出現 302 錯誤

所以我讓 nginx 作為反向代理運行。它指向一個 dockerized 應用程式。

我的部分配置有效,調用http://localhost/bstack1被傳遞到應用程式中作為http://本地主機/(忽略路徑中的“bstack1”)。

現在問題來了,應用程式將 302 發送回其位於 /login 的登入頁面。代替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;

相關內容