사전 테스트 접속 도메인 이름: www.test.com/api/upload
location /api/ { proxy_pass http://127.0.0.1:8080/; }
접속 주소: www.test.com/ api/upload -->http://127.0.0.1:8080/upload
location /api { proxy_pass http://127.0.0.1:8080/; }
가 포함됩니다. 액세스 주소: www.test.com /api/upload- ->http://127.0.0.1:8080//upload
location /api/ { proxy_pass http://127.0.0.1:8080; }
액세스 주소와 일치하는 위치를 갖습니다. .test.com /api/upload-->http://127.0.0.1:8080/api/upload
location /api { proxy_pass http://127.0.0.1:8080; }
액세스 주소: www.test.com/api/upload-->http://127.0.0.1:8080/api/upload
location /api/ { proxy_pass http://127.0.0.1:8080/server/; }
액세스 주소가 있습니다. test.com/api /upload-->http://127.0.0.1:8080/server/upload
location /api { proxy_pass http://127.0.0.1:8080/server/; }
Access입니다. 주소: www.test.com/api/upload-->http://127.0.0.1:8080/server//upload
location /api/ { proxy_pass http://127.0.0.1:8080/server; }
액세스 주소: www.test.com/api/upload-->http://127.0.0.1:8080/serverupload
location /api { proxy_pass http://127.0.0.1:8080/server; }
액세스 주소: www.test.com/api/upload-->http://127.0.0.1:8080/server/upload
위 내용은 nginx 위치와 Proxy_pass의 차이점은 무엇입니까의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!