`

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;

 

upstream aaa{

      server localhost:8080 weight=10 max_fails=2 fail_timeout=30s; #weight权重,值越大,在负载均衡时分配的请求越多  

  #tomcat配置 <Context docBase="boss" path="/" reloadable="true" source="org.eclipse.jst.jee.server:boss"/></Host> path改为 / 原为 "/boss"

}   #1.down 表示单前的server暂时不参与负载 

#2.weight 默认为1.weight越大,负载的权重就越大。 

#3.max_fails :允许请求失败的次数默认为1.当超过最大次数时,返回proxy_next_upstream 模块定义的错误 

#4.fail_timeout:max_fails次失败后,暂停的时间。 

#5.backup: 其它所有的非backup机器down或者忙的时候,请求backup机器。所以这台机器压力会最轻。 

 

    server {

        listen       80;

        server_name  localhost;

index index.jsp index.htm index.php;

#root D:\Nginx;  ##项目目录 D:\Nginx\boss\WEB-INF

 

        #charset koi8-r;

 

        #access_log  logs/host.access.log  main;

 

#location / {

        #   root   html;

        #    index  index.html index.htm;   ##进入nginx 的html文件夹下的 index页, 在index 页进行重定向

        #}

 

location / {

            proxy_pass http://aaa;  ##引用upstream 

        }

  

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|txt)$ {  

root D:\Nginx\boss;

expires 24h; #设置过期时间  

  

 

location ~ .*\.(js|css)?$

                {

root D:\Nginx\boss;

                                expires      12h;

                }

 

        #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轻松实现开源负载均衡

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

    Nginx+tomcat 实现负载均衡session共享demo

    配置`Nginx`进行负载均衡的步骤如下: 1. 安装`Nginx`:在服务器上安装`Nginx`,确保它能够正常启动和运行。 2. 配置`Nginx`:在`nginx.conf`配置文件中,我们需要定义一个upstream块,列出所有`Tomcat`服务器的IP...

    Nginx负载均衡配置

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

    nginx负载均衡配置文件实例

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

    nginx负载均衡实现

    Nginx作为一种高性能的负载均衡工具,在实现负载均衡的同时,还提供了丰富的功能和灵活的配置选项,使得它成为众多企业和开发者的首选方案。通过合理的负载均衡策略和技术组合,可以有效地应对各种复杂的网络环境...

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

    在Linux系统中,安装Nginx并配置负载均衡通常包括以下步骤: 1. 创建Nginx运行的用户和组。 2. 下载并编译安装Nginx及必要的模块,如rewrite模块。 3. 备份默认的`nginx.conf`配置文件。 4. 编辑`nginx.conf`,配置...

    nginx+tomcat 负载均衡简易配置与动静分离

    在构建高性能、高可用性的Web服务时,"nginx+tomcat 负载均衡简易配置与动静分离"是一个常见的架构模式。Nginx作为一个轻量级的反向代理服务器,通常用于处理静态内容和实现负载均衡,而Tomcat作为Java应用服务器,...

    nginx1.8 负载均衡

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

    负载均衡器技术Nginx和F5的优缺点对比

     我们使用的是软负载均衡器Nginx,而农行用的是F5硬负载均衡器,这里简单介绍下这两种技术:  a、软件负载均衡解决方案  在一台服务器的操作系统上,安装一个附加软件来实现负载均衡,如Nginx负载均衡(我们...

    nginx软件负载均衡

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

    Nginx轻松实现开源负载均衡

    同时,配置负载均衡策略,如轮询、权重分配、最少连接数等。 3. **启动Nginx**:启动Nginx服务,通过`nginx -t`进行配置文件检查,无误后使用`nginx -s reload`命令加载新的配置。 4. **监控和调整**:通过Nginx的...

    nginx 双tomcat 负载均衡

    Nginx 双 Tomcat 负载均衡配置详解 Nginx 是一款流行的开源反向代理服务器软件,可以实现负载均衡、缓存、SSL 加速等多种功能。在本文中,我们将介绍如何使用 Nginx 实现双 Tomcat 负载均衡,以提高网站的可用性和...

    Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解

    ### Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解 #### 一、前言 Nginx是一款广泛使用的高性能HTTP和反向代理Web服务器,也是邮件代理服务器,并具有IMAP/POP3/SMTP服务。Nginx以其稳定性、丰富的...

    nginx负载均衡 nginx+tomcat tomcat实现负责均衡

    3. **负载均衡与容错**:Nginx支持简单的负载均衡机制,能够有效地分散流量至多个后端服务器,并具备一定的容错能力。 4. **丰富的HTTP服务器功能**:Nginx提供了一系列标准的HTTP服务器功能,如日志记录、数据压缩...

    2.nginx.conf的配置(负载均衡的配置)和tomcat(session共享).doc

    配置负载均衡,需要在HTTP块或者Server块中添加upstream模块,定义一组服务器,并设置负载均衡策略。例如,轮询策略(round-robin)可以这样写: ```nginx http { upstream backend { server 127.0.0.1:8080; ...

Global site tag (gtag.js) - Google Analytics