nginx proxy_pass 在应用程序的 302 错误上中断

nginx proxy_pass 在应用程序的 302 错误上中断

因此,我让 nginx 作为反向代理运行。它指向一个 dockerized 应用程序。

我的部分配置有效,调用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;

相关内容