Nginx-8.nginx反向代理监控虚拟IP地址
Posted wang-hongwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx-8.nginx反向代理监控虚拟IP地址相关的知识,希望对你有一定的参考价值。
一、 编写nginx反向代理配置
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; upstream myserver { server 10.0.0.7:80; server 10.0.0.8:80; server 10.0.0.9:80; } server { listen 10.0.0.3:80; server_name www.example.com; root html; index index.html index.htm; location / { proxy_pass http://myserver; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $remote_addr; } } }
二、 监听本地网卡上没有的IP地址
echo ‘net.ipv4.ip_nonlocal_bind = 1‘ >>/etc/sysctl.conf
此操作我的模板机已进行优化,但不保证其他机器也会优化,所以写上
sysctl -p
三、 重启服务
[root@xxx~]# nginx -s stop [root@xxx~]# nginx [root@xxx~]# netstat -lntup|grep nginx tcp 0 0 10.0.0.3:80 0.0.0.0:* LISTEN 53334/nginx
以上是关于Nginx-8.nginx反向代理监控虚拟IP地址的主要内容,如果未能解决你的问题,请参考以下文章