nginx .conf 基本配置 随手记


user root;
worker_processes  1;  #允许生成的进程数,默认是1


events {  
    accept_mutex on;   #设置网路连接序列化,防止惊群现象发生,默认为on
    multi_accept on;  #设置一个进程是否同时接受多个网络连接,默认为off
    #use epoll;      #事件驱动模型,select|poll|kqueue|epoll|resig|/dev/poll|eventport
    worker_connections  1024;    #最大连接数,默认为512
}


http { 
    include       mime.types; #文件扩展名与文件类型映射表
    default_type  application/octet-stream;  
    sendfile        on; #开启高效文件传输模式
    #tcp_nopush     on;

    keepalive_timeout  65;#保持请求活跃时间

    #gzip  on;
    #配置负载均衡
    upstream httpds{
     server 127.0.0.1 weight 10 down;#weight 表示权重  down  表示宕机
     server 127.0.0.1 weight 10;
     server 127.0.0.1 weight 10 backup;#backup 表示备用机
     
    }
    server {
        listen       80;
        server_name  114.116.204.23;

        gzip on; # 开启Gzip
        # gzip_static on; # 开启静态文件压缩 这句话不要
        gzip_min_length  1k; # 不压缩临界值,大于1K的才压缩
        gzip_buffers     4 16k;
        gzip_comp_level 5;
        gzip_types     application/javascript application/x-javascript application/xml application/xml+rss application/x-httpd-php text/plain text/javascript text/css image/jpeg image/gif image/png; # 进行压缩的文件类型
        gzip_http_version 1.1;
        gzip_vary on;
        gzip_proxied   expired no-cache no-store private auth;
        gzip_disable   "MSIE [1-6]\.";

        location / {
            rewrite ^/([0-9]+).html$   /index?pageNum=$1 break; #隐藏路径 break、last、redirect
            proxy_pass http://httpds; #负载均衡反向代理 
            #root   /data/ui; # root表示根目录,这里的路径需要与Xftp上传的静态资源文件的路径一致
            #index  index.html index.htm;
            #try_files $uri $uri/ /index.html;
        }
        
        
        location ~*(css|js|img) {  #动静分离   ~* 表示使用正则表达式  找的是nginx中根目录下的html目录中的css/js/img
                                           #配置访问路径 一般配置域名没有域名配置ip 也就是Referer中的地址
            valid_referers none 127.0.0.1;#防盗链 none、检测Referer 不存在的时候是可以访问的  blocked  检测Referer头域http https 
            if($invalid_referer){          #server_names 设置一个或者多个URL #检测Referer头域的值是否是否能匹配URL中的某一个
               rewrite ^/ img/错误页面.png break;#返回错误页也可以隐藏路径从定向到错误页
               #return 403;
            }
            root   html; # root表示根目录,这里的路径需要与Xftp上传的静态资源文件的路径一致
            index  index.html index.htm;
        
        }
        error_page 403 500 /403.html;
        location =/403.html{
            root html;
        
        }

        location @router {
            rewrite ^.*$ /index.html last;
        }
    }
}