定义反向代理
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教程有兴趣的朋友有所帮助。
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!