Passing a Request to a Proxied Server
nginx는 HTTP , FastCGI, uwsgi, SCGI, memcached 프로토콜에 대한 프록싱을 지원한다.
각 프로토콜에 대한 drective는
[type]_pass
로 작성된다.HTTP 프록시의 경우
proxy_pass
directive를 명시하면 된다.// ex 1)
location /some/path/ {
proxy_pass http://www.example.com/link/;
}
// ex 2) port로 작성될 수도 있다.
location ~ \.php {
proxy_pass http://127.0.0.1:8000;
}
ex 1)에서
/some/path/page.html
URI에 대한 요청이 들어올 경우, 해당 요청은 http://www.example.com/link/page.html
로 프록싱된다.Passing Request Headers
default로, NGINX는 프록시 요청 헤더에 "Host", "Connection" 필드를 추가하고, 빈 헤더를 모두 제거한다. Host는
$proxy_host
변수에 할당된 값을 사용하며, Connection은 close
로 설정된다.만약 default setting을 변경하고 싶담녀
proxy_set_header
directive를 통해 헤더를 설정하면 된다.location /some/path/ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://localhost:8000;
}
// prosxy_set_header는 location 또는 location의 outer blocks에서 설정할 수 있다.
프록시 서버로 헤더가 전달되는 것을 방지하고 싶다면 아래와 같이 작성한다.
location /some/path/ {
proxy_set_header Accept-Encoding "";
proxy_pass http://localhost:8000;
}
Buffers
추가 작성
Choosing an Outgoing IP Address
만약 여러 개의 프록시 서버를 두고 있다면, 프록시 서버의 ip를 통해
location /app1/ {
proxy_bind 127.0.0.1;
proxy_pass http://example.com/app1/;
}
location /app2/ {
proxy_bind 127.0.0.2;
proxy_pass http://example.com/app2/;
}