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{}配置
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/;}}
版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了nginx匹配ip,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。