Nginx 매 칭 IP

2207 단어 nginx
Nginx 매 칭 ip
우선 모 르 는 점 이 있 으 시 면 말씀 해 주세요!!그날 이나 다음날 바로 답장 하고 개선 하 겠 습 니 다 ~
역방향 에이전트 정의
upstream portal.hongxue.com {
server 192.168.0.216:100 weight=1;
}

upstream mobile.hongxue.com {
server 192.168.0.216:200 weight=1;
}

upstream console.hongxue.com {
server 192.168.0.216:300 weight=1;
}

서버 {} 설정 정의
server {
listen 80;
server_name www.hongxue.com;
charset utf8;

location / {
if ( $remote_addr = "10.1.2.6" )
    {
    proxy_pass http://console.hongxue.com;
    break;
    }
if ( $remote_addr = "10.1.2.5" )
    {
    proxy_pass http://portal.hongxue.com;
    break;
    }
if ( $remote_addr = "10.1.2.7" )
    {
    proxy_pass http://mobile.hongxue.com;
    break;
}
    proxy_pass http://192.168.0.223/;
}
}

좋은 웹페이지 즐겨찾기