`
taiwei.peng
  • 浏览: 233964 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

nginx 配置负载均衡

阅读更多
#user  nobody;
worker_processes  1;
error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
pid        logs/nginx.pid;
events {
    worker_connections  1024;
}       

http {
    include       mime.types;
    default_type  application/octet-stream;
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  logs/access.log  main;
    sendfile        on;
    #tcp_nopush     on;
    #keepalive_timeout  0;
    keepalive_timeout  65;
    gzip on;  
    gzip_min_length  1k;  
    gzip_buffers     4 16k;  
    gzip_http_version 1.1;  
    gzip_comp_level 2;  
    gzip_types       text/plain application/x-javascript text/css application/xml;  
    gzip_vary on;  

    upstream web_app{            
       server 192.168.0.57:8080 weight=10;
       server 192.168.0.11:80   weight=5;
    }


    server {
        listen      80;
        server_name localhost;
        access_log  logs/host.access.log  main;
index  index.jsp index.html;

location /{
proxy_pass http://web_app;

  proxy_redirect  off;
  proxy_set_header Host $host;
  proxy_set_header X-Real-IP $remote_addr;
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
       
  client_max_body_size 30m;
  client_body_buffer_size 128k;

  proxy_connect_timeout 300;
  proxy_read_timeout 300;
  proxy_send_timeout 300;

  proxy_buffer_size 64k;
  proxy_buffers   4 32k;
  proxy_busy_buffers_size 64k;
  proxy_temp_file_write_size 64k;
        }

        error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
}
分享到:
评论

相关推荐

    nginx配置 +负载均衡+https协议

    2. **配置负载均衡** - 对于负载均衡,可以通过在Nginx配置文件中定义多个后端服务器,并使用`proxy_pass`指令来实现。 ```nginx upstream backend { server backend1.example.com; server backend2.example....

    Nginx实现负载均衡 web均衡负载 webservice负载均衡 Nginx实现负载均衡配制全说明

    Nginx实现负载均衡 web均衡负载 webservice负载均衡 Nginx实现负载均衡配制全说明 为了多台后台的web、webservice服务能均衡负载,可以使用nginx进行处理 1)配置文件全配制ok 2)有两个完整的web服务做例子,可以...

    Nginx配置负载均衡和缓存详解

    ### Nginx配置负载均衡和缓存详解 #### 负载均衡概念解析 随着互联网技术的迅猛发展,网络服务的访问量与日俱增,单一服务器已经难以满足大规模访问需求。为此,**负载均衡**作为一种高效且经济的解决方案应运而生...

    Nginx配置负载均衡、动静分离、请求日志打印、日志切割、压缩、删除.md

    #### 一、Nginx配置负载均衡 **负载均衡**是Nginx的一项核心功能,它能帮助我们将客户端请求分发到不同的服务器上,从而提高系统的稳定性和可用性。 **1.1 配置示例** 要在Nginx中实现负载均衡,首先需要定义一个...

    nginx配置负载均衡和反向代理示例.txt

    ### Nginx配置负载均衡与反向代理知识点详解 #### 一、理解负载均衡与反向代理 在深入了解本文档中的具体配置之前,我们首先来了解一下负载均衡与反向代理的基本概念。 **负载均衡**是一种分布式系统设计的技术,...

    nginx1.8 负载均衡

    三、Nginx 配置负载均衡 在 Nginx 的配置文件中,我们需要定义一个 upstream 模块来指定后端服务器列表,并选择合适的负载均衡策略。例如: ```nginx upstream backend { server backend1.example.com weight=3; ...

    nginx软件负载均衡

    **Nginx配置负载均衡** 在Nginx配置文件中,通常通过`http`、`upstream`和`server`块来实现负载均衡。例如,创建一个名为`backend`的上游服务器组,包含两台服务器: ```nginx http { upstream backend { server...

    nginx负载均衡配置-windows.docx

    nginx 负载均衡配置-windows.docx 本文档主要介绍了在 Windows 平台上使用 Nginx 实现负载均衡的配置方法。虽然 Nginx 官方文档中提到 Windows 平台仅供测试之用,但是在小规模并发场景中,Nginx 仍然具有不小的...

    windows配置nginx实现负载均衡集群

    【Windows环境下配置Nginx实现...3. 配置负载均衡策略。 4. 重启Nginx服务。 5. 在Web服务器上部署应用程序并验证负载均衡效果。 通过这样的配置,可以有效地提升系统的稳定性和应对高并发场景,确保业务的正常运行。

    Nginx-配置负载均衡的几种方式

    本文将详细介绍Nginx配置负载均衡的几种常用方法及其应用场景。 #### 二、Nginx负载均衡基础配置 首先,我们需要了解Nginx负载均衡的基本配置步骤: 1. **创建Upstream块**:在`http`节点下添加`upstream`节点,该...

    Spring Boot+Nginx实现负载均衡1

    Spring Boot+Nginx 实现负载均衡 在本文中,我们将介绍如何使用 Spring Boot 和 Nginx 实现负载均衡。负载均衡是指将 Incoming requests 分配到多个服务器,以提高系统的可扩展性和可靠性。使用 Spring Boot 和 ...

    nginx负载均衡配置,宕机自动切换方式

    在传统的nginx负载均衡配置中,并未直接提供后端服务器健康检查的功能,但nginx提供了几个重要的指令来帮助我们设置超时和重试机制,来间接保障服务的可用性。例如,proxy_connect_timeout指令用于设置nginx尝试连接...

    Nginx+Tomcat 负载均衡 3分钟搞定

    要实现负载均衡,需要在 Nginx 服务器上配置 upstream 模块,以便将请求分配到多台 Tomcat 服务器上。具体配置如下: 1. upstream netitcast.com { server 127.0.0.1:18080 weight=1; server 127.0.0.1:28080 ...

    Nginx负载均衡集群配置文档

    四、Nginx配置负载均衡 1. 在Nginx配置文件中,创建一个新的server块,定义监听的端口,例如8080。 2. 使用upstream模块定义一组后端服务器,将Tomcat实例添加到其中。例如: ``` upstream backend { server ...

    张宴 使用Nginx轻松实现开源负载均衡

    3. Nginx配置负载均衡: 在Nginx的配置文件(nginx.conf)中,可以通过`http`、`upstream`和`server`等块级结构定义负载均衡策略。例如: ```nginx http { upstream backend { server backend1.example....

    nginx+redis负载均衡、session共享

    同时,Nginx配置中需要设置一个upstream块,定义后端服务器的地址,并启用proxy_pass指令将session相关的请求转发到Redis服务器。 总的来说,"nginx+redis负载均衡、session共享"的架构提高了Web服务的可扩展性和...

    Nginx负载均衡配置

    在nginx.conf中配置负载均衡主要涉及三个步骤: 1. 配置服务器组(upstream模块) 在http块中添加upstream模块来定义一组服务器。服务器可以指定IP地址、域名或者UNIX套接字。upstream模块中的服务器后可以设置权重...

    nginx负载均衡配置文件实例

    **Nginx负载均衡配置详解** Nginx是一款高性能的HTTP和反向代理服务器,它以其轻量级、高并发的特性在Web服务领域广泛应用。其中,Nginx的负载均衡功能是其重要特性之一,它能有效地分散网络流量,提高系统可用性和...

    HAProxy+Nginx实现负载均衡

    ### HAProxy与Nginx实现负载均衡的关键知识点 #### 一、HAProxy简介与特性 HAProxy是一款开源的、高效且可靠的负载均衡器,专为处理大规模Web流量设计。其核心功能包括: - **高可用性**:HAProxy能够确保在主...

Global site tag (gtag.js) - Google Analytics