웹마스터 팁

이게 뭐하는거냐면..

2.domain.com으로 접근하면 192.168.74.2로 요청을 돌려주는 역할을 한다.
다만 도메인은 그대로 사용한다.
그리고 2.domain.com/test로 접근해도 192.168.74.2/test로 접근이 가능하겠다.


server {

listen   80;
server_name 2.domain.com;
location / {
proxy_pass http://192.168.74.2/;
index  index.php index.html index.htm;
}
}

출처 http://folderfile.net/xe/6776