nginx Proxy_pass가 애플리케이션의 302에서 중단됩니다.

nginx Proxy_pass가 애플리케이션의 302에서 중단됩니다.

그래서 nginx를 역방향 프록시로 실행하고 있습니다. 도커화된 애플리케이션을 가리키고 있습니다.

내 구성의 일부가 작동합니다.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;

관련 정보