nginx proxy_pass bricht bei 302s aus der Anwendung ab

nginx proxy_pass bricht bei 302s aus der Anwendung ab

Ich habe also nginx als Reverse-Proxy laufen. Es verweist auf eine Docker-Anwendung.

Ein Teil meiner Konfiguration funktioniert, ein Aufruf vonhttp://localhost/bstack1wird an die Anwendung übergeben alshttp://localhost/(Ignorieren Sie „bstack1“ im Pfad).

Jetzt kommt das Problem, die Anwendung sendet eine 302 an ihre Anmeldeseite unter /login zurück. Anstatthttp://localhost/bstack1/loginder Browser zeigthttp://localhost/loginwas kaputt geht, da es nicht mehr mit dem Standort übereinstimmt.

Ich habe mehrere Anwendungen, die alle über unterschiedliche Verzeichnispfade ausgeführt werden.

# 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;
}

Antwort1

Ich glaube, Sie möchten die proxy_redirectDirektive in Ihrem locationBlock, wie hier erwähnt:

https://stackoverflow.com/a/26025618

Folgendes würde vermutlich genügen:

proxy_redirect default;

verwandte Informationen