zoukankan      html  css  js  c++  java
  • nginx配置文件详解

    @参考博客1@参考博客2@参考博客3

    #运行用户,默认即是nginx,可不设置
    #user  nobody;
    
    #nginx进程,一般设置为和cpu核数一样
    worker_processes  8;
    
    #错误日志存放目录
    #error_log  logs/error.log;
    #error_log  logs/error.log  notice;
    #error_log  logs/error.log  info;
    
    
    #进程pid存放位置
    #pid        logs/nginx.pid;
    
    #events块:配置影响nginx服务器或与用户的网络连接。有每个进程的最大连接数,选取哪种事件驱动模型处理连接请求,是否允许同时接受多个网路连接,开启多个网络连接序列化等。
    events {
        #单个后台worker process进程的最大并发链接数
        worker_connections  20480;
    }
    
    #可以嵌套多个server,配置代理,缓存,日志定义等绝大多数功能和第三方模块的配置。如文件引入,mime-type定义,日志自定义,是否使用sendfile传输文件,连接超时时间,单连接请求数等。
    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参数可以允许把httpresponse header和文件的开始放在一个文件里发布,积极的作用是减少网络报文段的数量
        #tcp_nopush     on;  
        
        #连接超时时间,单位是秒。默认为75s,可以在http,server,location块。
        #keepalive_timeout  0;
        keepalive_timeout  65;
       
        #开启gzip压缩功能,是一种压缩技术,经过gzip压缩后的页面大小可以变成原来的30%或者更小。
        #用户浏览页面的时候速度也会更快,gzip的压缩页面需要服务端于浏览器同时支持,服务端压缩传到
        #浏览器进行解压并解析,现在大多数的浏览器都已经支持解析gzip过的页面
        gzip  on;
    
        #upstream表示负载服务器池,定义名字为naire的服务器池.将client端的请求分发
        upstream naire {
          #weight(权重) 指定轮询几率,weight和访问比率成正比,用于后端服务器性能不均的情况。如下所示,10.0.0.88的访问比率要比10.0.0.77的访问比率高一倍。
          #设置由 fail_timeout 定义的时间段内max_fails内该主机是否可用。
          #max_fails设置在指定时间内连接到主机的失败次数,超过该次数该主机被认为不可用。这里是在30s内尝试2次失败即认为主机不可用!默认情况下这个数值设置为 1。零值的话禁用这个数量的尝试。
          #server 127.0.0.1:8080 weight=1 max_fails=2 fail_timeout=30s;
          server 127.0.0.1:8080;
              server 127.0.0.1:8081;
          server 127.0.0.1:8082;
          server 127.0.0.1:8083;
          server 127.0.0.1:8079;
          ip_hash;#每个请求按访问ip的hash结果分配,这样每个访客固定访问一个后端服务器,可以解决session的问题。
        }
        #server块:配置虚拟主机的相关参数,一个http中可以有多个server。
        server {
            listen       81;#虚拟主机监听端口,监听该端口并转发到upstream中定义的端口
            server_name  127.0.0.1;#监听地址  定义使用127.0.0.1访问
    
            #charset koi8-r;#可以实现多种编码识别
    
            #access_log  logs/host.access.log  main;#nginx访问日志
        
        #location块:配置请求的路由,以及各种页面的处理情况。
            location / {
               proxy_pass http://naire;  #请求转向naire(upstream块) 定义的服务器列表
            }
    
            #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$ { #符合php扩展名的请求调度到fcgi server  
            #    root           html;
            #    fastcgi_pass   127.0.0.1:9000;#抛给本机的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目录禁止访问
            #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;
        #    }
        #}
    
    }
  • 相关阅读:
    JavaWeb的三大作用域
    软件工程最后一次作业
    软件工程第四次作业
    软件工程第三次作业
    软件工程第二次作业
    2020软件工程第一次作业
    新建Maven项目报错:Cannot resolve plugin org.apache.maven.plugins:maven-clean-plugin:x.x
    浅谈C++ STL
    C++中几种输入输出cin、cin.getline()、getline()、sscanf()、sprintf()、gets()等
    包含头文件的问题之1.7编程基础之字符串 24:单词的长度
  • 原文地址:https://www.cnblogs.com/yanan7890/p/9639309.html
Copyright © 2011-2022 走看看