gogunbuntu-study / http-the-definitive-guide

HTTP 완벽 가이드
1 stars 0 forks source link

[6장. 프락시] React + Nginx AS a Reverse Proxy #10

Open yoon-chaejin opened 2 years ago

yoon-chaejin commented 2 years ago

Reverse Proxy

브라우저 <> Nginx <> Web Server / WAS HTTPS <> HTTPS - HTTP <> HTTP

CORS 문제에서도 해결방안이 될 수 있음 -> https://a.com/api <> https://a.com/api/ - http://b.com/api/ <> http://b.com/api/*

위와 같은 설계를 proxy_pass 값을 설정함으로써 처리할 수 있음 Nginx 를 사용하면 Reverse Proxy 처럼 구동하게 할 수도 있다. (모든 요청을 Reverse Proxy 처럼 처리한다는 것은 아니다.)

https://suyeoniii.tistory.com/109