답변:
다시 쓰기를 사용하여 URL의 추가 부분을 제거 할 수 있다고 생각합니다. 귀하의 경우에는 다음을 사용할 수 있다고 생각합니다.
location /route/ {
rewrite ^/route/?(.*)$ /$1 break;
proxy_pass http://127.0.0.1:9000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
그러나 앱에 내부 링크가있는 경우 여전히 / abc / foo를 가리킬 수 있으며, 이렇게하면 원시 요청이 올바로 들어 오도록 / route / abc / foo를 가리켜 야합니다. nginx 설정을 그대로두고 대신 하위 디렉토리에있을 수 있도록 앱을 구성하는 것이 좋습니다.
나는 이것이 오래된 질문이라는 것을 알고 있지만 같은 문제를 해결하려고 할 때 가장 인기있는 구글이었습니다!
다음을 시도하십시오
location /route/ {
proxy_pass http://127.0.0.1:9000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
vim nginx.conf
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 8080;
location / {
proxy_pass http://compute-1-36:8787;
proxy_redirect http://compute-1-36:8787/ $scheme://$host:8080/;
}
}
이 코드는 8080에서 수신 대기하며 계산 -1-36에서 포트 8787로 리디렉션됩니다. 위치에서 다른 경로를 선택할 수 있습니다 /
/
것은 위치에 나열된 접두사를 제거하는 방법으로 잘 문서화되어 있습니다.