美文网首页
nginx.conf简单配置解析

nginx.conf简单配置解析

作者: 若尘0328 | 来源:发表于2017-12-08 14:01 被阅读0次
    nginx的简单命令:

    配置文件重新加载: nginx -s reload
    校验nginx.conf 文件的语法格式 , nginx -t

    nginx.conf简单配置:
    #user  nobody 启动多少个工作子进程,默认是1,一般设置为服务器的核心数 ;
    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 {
        #一个work最大允许有多少个连接
        worker_connections  1024;
    }
    
    
    http {
        include       mime.types;
        default_type  application/octet-stream;
        #定义日志格式,可以定义多种,这个是test,server标签里面的log格式应该选这里定义的名字
        log_format  test  '$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;
    
        server {
            listen       80;
            server_name  mini01;
    
            #charset koi8-r;
            #这个服务器日志位置  main代表日志格式,不同服务器可以定义不同的日志格式
            access_log  logs/host.access.log  test;
            #主要做定位功能,一个server可以有多个location,根据uri来进行不同的定位
            location / {
                #去根目录的html目录中找index.html作为首页,根目录指的是nginx的安装目录,/usr/local/nginx/html
                root   html;
                index  index.html;
               # proxy_pass http://mini02:8080;
            }
    
            #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;
            #}
        }
    
    }
    
    location标签的正则匹配:location [=|~|~*|^~] /uri/ { …}
    =    开头表示精确匹配
    ^~  表示uri以某个常规字符串开头,相当于匹配uri路径
    ~       区分大小写的正则匹配
    !~  区分大小写不匹配
    !~* 不区分大小不匹配
     ~*  不区分大小写的正则匹配
    /       通用匹配
    精准匹配  / 一般匹配 / 正则匹配
    
    匹配优先级:

    1.首先匹配精准路径
    2.如果两个location都是一般匹配规则,那么会按照最长路径匹配
    3.一般匹配和正则匹配的过程是:首先会选择一般匹配过程中的大前缀匹配,但是匹配过程不会停止,最大前缀匹配只是一个临时结果,nginx还会继续检查正则location。
    按照正则location在配置文件的物理顺序做匹配,如果匹配到一条正则location,就不会考虑后面的规则

    location /jz {
        #注意这里是以  /  开头的,所以去..目录去找 ..目录在安装nginx的时候可以配置
       # 默认是${nginx}
       #如果改成  root  /root/test/jz那就去/root/test/jz去找
        root /test/jz;
        #如果匹配到这location 对应的磁盘中真实路径是/test/jz/jz/index.html
        index index.html;
    }
    

    详解:

    #工作模式及连接数上限
    events
    {
      use epoll;  #多路复用IO 基于LINUX2.6以上内核,可以大大提高NGINX的性能
      worker_connections 102400;  #单个worker process最大连接数,其中NGINX最大连接数=连接数*进程数(4), 一般1GB内存的机器上可以打开的文件最大数大约是10万左右
      multi_accept on;   #尽可能多的接受请求,默认是关闭状态
    }
    
    #处理http请求的一个应用配置段
    http
    {
      include       mime.types;#引用mime.types,这个类型定义了很多,当web服务器收到静态的资源文件请求时,依据请求文件的后缀名在服务器的MIME配置文件中找到对应的MIME Type,根据MIMETYPE设置并response响应类型(Content-type)
     
    
      #指定默认类型为二进制流,也就是当文件类型未定义时使用这种方式,此时,用浏览器访问JSP文件就会出现下载窗口
    
      default_type  application/octet-stream;#定义的数据流,有的时候默认类型可以指定为text,这跟我们的网页发布还是资源下载是有关系的
      fastcgi_intercept_errors on; #表示接收fastcgi输出的http 1.0 response code
      charset utf-8;
      server_names_hash_bucket_size 128;  #保存服务器名字的hash表   #could not build the server_names_hash, you should increase server_names_hash_bucket_size: 64
      client_header_buffer_size 4k;
      large_client_header_buffers 4 32k;
      client_max_body_size 300m;  #允许客户端请求的最大单文件字节数
      sendfile on;  #指定NGINX是否调用这个函数来输出文件,对于普通的文件我们必须设置为ON,如果NGINX专门做为一个下载端的话可以关掉,好处是降低磁盘与网络的IO处理数及系统的UPTIME
      #autoindex on;开启目录列表访问,适合下载服务器
      tcp_nopush on;  #防止网络阻塞
      keepalive_timeout 60;#非常重要,根据实际情况设置值,超时时间,客户端到服务端的连接持续有效时间,60秒内可避免重新建立连接,时间也不能设太长,太长的话,若请求数10000,都占用连接会把服务托死
      tcp_nodelay on;#提高数据的实时响应性
      client_body_buffer_size 512k;  #缓冲区代理缓冲用户端请求的最大字节数(请求多)
    
      proxy_connect_timeout   5;   #nginx跟后端服务器连接超时时间(代理连接超时)
      proxy_read_timeout      60;  #连接成功后,后端服务器响应时间(代理接收超时)
      proxy_send_timeout      5;   #后端服务器数据回传时间(代理发送超时)
      proxy_buffer_size       16k; #设置代理服务器(nginx)保存用户头信息的缓冲区大小
      proxy_buffers           4 64k;#proxy_buffers缓冲区,网页平均在32k以下的话,这样设置
      proxy_busy_buffers_size 128k; #高负荷下缓冲大小
      proxy_temp_file_write_size 128k; #设定缓存文件夹大小,大于这个值,将从upstream服务器传
    
      gzip on;     #NGINX可以压缩静态资源,比例我的静态资源有10M,压缩后只有2M,那么浏览器下载的就少了
      gzip_min_length  1k;
      gzip_buffers     4 16k;
      gzip_http_version 1.1;
      gzip_comp_level 2;#压缩级别大小,最小1,最大9,值越小,压缩后比例越小,CPU处理更快,为1时,原10M压缩完后8M,但设为9时,压缩完可能只有2M了
      gzip_types       text/plain application/x-javascript text/css application/xml; 压缩类型:text,js css xml 都会被压缩
      gzip_vary on; #作用是在http响应中增加一行目的是改变反向代理服务器的缓存策略
    
    #日志格式
    log_format  main '$remote_addr - $remote_user [$time_local] "$request" ' #ip 远程用户 当地时间  请求URL
                     '$status $body_bytes_sent "$http_referer" ' #状态  发送的大小  响应的头
                     '"$http_user_agent" $request_time'; #客户端使用的浏览器  页面响应的时间
    @动态转发
    upstream web1 {
         ip_hash;   #每个请求按访问ip的hash结果分配,这样每个访客固定访问一个后端服务器,可以解决session的问题
         server   127.0.0.1:8080 weight=1 max_fails=2 fail_timeout=30s; #机器性能不一样weight不一样
         server   127.0.0.1:8081 weight=1 max_fails=2 fail_timeout=30s;
    }
    upstream web2 {
         server   127.0.0.1:8082 weight=1 max_fails=2 fail_timeout=30s;
         server   127.0.0.1:8083 weight=1 max_fails=2 fail_timeout=30s;
    }
         include vhosts.conf;
    }
    
    vhosts.conf
    
    server {
            listen       80;
            server_name  www.james1.com; #域名
            index  index.jsp index.html index.htm;  
            root   html;#定义服务器的默认网站根目录位置
    
            location /
            {
                proxy_next_upstream http_502 http_504 error timeout invalid_header; #如果后端的服务器返回502、504、执行超时等错误,自动将请求转发到upstream负载均衡池中的另一台服务器,实现故障转移。
                proxy_set_header Host  $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_pass http://web2;
            }
    
            location ~ .*\.(php|jsp|cgi|shtml)?$ #动态分离 ~匹配 以.*结尾(以PHP JSP结尾走这段)
            {
                proxy_set_header Host  $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_pass http://web2;
            }
    
            location ~ .*\.(html|htm|gif|jpg|jpeg|bmp|png|ico|txt|js|css)$  #静态分离 ~匹配 以.*结尾(以PHP JSP结尾走这段),当然不是越久越好,如果有10000个用户在线,都保存几个月,系统托跨
            {
                root /var/local/static;  //静态资源所放位置
                expires    30d;
            }
    
            #日志级别有[debug|info|notice|warn|error|crit]  
        error_log 级别分为 debug, info, notice, warn, error, crit  默认为crit, 
        #生产环境用error 
        #crit 记录的日志最少,而debug记录的日志最多
            access_log  /usr/local/logs/web2/access.log main;
            error_log   /usr/local/logs/web2/error.log  crit;
    
        }
    

    相关文章

      网友评论

          本文标题:nginx.conf简单配置解析

          本文链接:https://www.haomeiwen.com/subject/dfeeixtx.html