nginx做负载均衡配置
以下配置,监听本机的80端口,为www.baidu.com这个域名提供服务。
效果:来自www.baidu.com的请求,平均地转发到 192.16.0.1:80, 127.0.0.1:8080 两个服务上。(nginx.conf)
另外:淘宝tengine的配置和这个基本一样
upstream main {
server 192.16.0.1:80; //此处用于配置tomcat的路径,包括端口,此处也可以进行权重配置
server 127.0.0.1:8080;
}
server {
listen 80; //此处为监听端口,也就是访问时候URL的端口号
server_name www.baidu.com;
server_tokens off;
root /dev/null;
# Increase this if you want to upload larger attachmentsclient_max_body_size 20m;
# individual nginx logs for this vhostaccess_log /var/log/nginx/store_access.log;
error_log /var/log/nginx/store_error.log;
location / {
proxy_read_timeout 300;
proxy_connect_timeout 300;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host teststore.boldseas.com;
#for proxy to IIS proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://main; //此处main和上边upstream main { ....... }中main的名字一样 ,需要注意
proxy_redirect off;
}
}
}
以上就介绍了nginx做负载均衡配置,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
nginx做负载均衡配置
-
Nginx反向代理、均衡负载
-
Nginx+Tomcat实现动静分离、负载均衡
-
Nginx/LVS/HAProxy负载均衡软件的优缺点详解
-
Tomcat+nginx+keepalived+memcached实现双VIP负载均衡及Session会话保持
-
Nginx+Tomcat 配置负载均衡
-
Nginx负载均衡/SSL配置的实现
-
dubbo与nginx都可以做负载均衡,然而哪个相对来说更优秀?为什么? springmvc+mybatisdubbo+zookeeperrestful redis分布式缓存spring mvc
-
dubbo与nginx都可以做负载均衡,然而哪个相对来说更优秀?为什么? springmvc+mybatisdubbo+zookeeperrestful redis分布式缓存spring mvc
-
Memcached windows系统上nginx+memcached+tomcat的负载均衡