본문 바로가기

ReverseProxy

(3)
NGINX MSA 디지털 트레이닝 - 8강 : Basics and Best Practices 강의 동영상 : https://www.youtube.com/watch?v=rQa2HrXXTJA 원본 동영상 : https://www.youtube.com/watch?v=pkHQCPXaimU 8강은 7강과 거의 동일한 내용을 설명하고 있다. 대부분의 내용이 7강 : NGINX Kick Starter 과 중복되어 있지만, 예시 위주로 다시한 번 정리했다. Simple Virtual Server server { listen 80 default_server; server_name [www.example.com](http://www.example.com); return 200; } server : virtual server context를 정의하는 Block listen : 수신할 IP, Port Number를 ..
NGINX MSA 디지털 트레이닝 - 7강 : NGINX Kick Starter 강의 동영상 : https://www.youtube.com/watch?v=sAXVraylurw 원본 동영상 : https://www.nginx.com/c/nginx-kick-start/, https://www.youtube.com/watch?v=rKXYxOVm0YE Kick Starter 강의는 이전 1~6강 강의와 중복되는 내용이 많아서 해당 부분은 Link로 대체하고 나머지 부분만 정의했다. 1. 주요 특징 및 Context Logic 참조 : NGINX MSA 디지털 트레이닝 - 1강 : Context Logic 추가 내용 - No Downtime Master Process와 Configuration을 읽고 Worker들을 Update하는 역할을 하며 Worker Process들은 들어오는 Requ..
NGINX MSA 디지털 트레이닝 - 2강 : Reverse Proxy NGINX에서 제공하는 디지털 트레이닝 코스 수강 하면서 정리한 내용이다. 원본 동영상 : https://www.youtube.com/watch?v=MqBNBPXxLLY 1. Proxy Forward Proxy : Client Side에서 실제 요청한 Client를 숨기고, 그를 대신해 요청을 전달. Reverse Proxy : Server Side에서 실제 Backend Server를 숨기면서 그 역할을 대신 수행. 2. Reverse Proxy 설정을 위한 Directive Syntax : proxy_pass ; 수신된 Request를 으로 정의된 backend server의 URL로 전달 의 address는 Domain name, IP Address&port number, unix socket, u..