zoukankan      html  css  js  c++  java
  • Nginx常用基础模块

    Nginx-第二章

    MarkdownHTML

    02·Nginx常用基础模块

    • 02·Nginx常用基础模块
      • [Nginx目录索引](file:///F:/老男孩72期脱产班笔记/第二阶段架构/第二章/-Nginx-第二章.html#title-1)
      • [Nginx状态监控](file:///F:/老男孩72期脱产班笔记/第二阶段架构/第二章/-Nginx-第二章.html#title-2)
      • [Nginx访问控制](file:///F:/老男孩72期脱产班笔记/第二阶段架构/第二章/-Nginx-第二章.html#title-3)
      • [Nginx访问限制](file:///F:/老男孩72期脱产班笔记/第二阶段架构/第二章/-Nginx-第二章.html#title-4)
      • [Nginx Location](file:///F:/老男孩72期脱产班笔记/第二阶段架构/第二章/-Nginx-第二章.html#title-5)

    -李振亚
    -笔者QQ:593528156
    -笔者微信:18301162995
    -多年互联网运维工作经验,曾负责过大规模集群架构自动化运维管理工作。
    -擅长Web集群架构与自动化运维,熟练使用DevOps工具
    -曾就职于大型互联网公司网际快车、北京建筑设计研究院、电信运营商和北京某大型上市公司担任运维经理


    Nginx目录索引

    ngx_http_autoindex_module模块处理以斜杠字符(’/’)结尾的请求,并生成目录列表。
    ngx_http_index_module模块找不到索引文件时,通常会将请求传递给ngx_http_autoindex_module模块。


    Nginx默认是不允许列出整个目录浏览下载。

    Syntax:    autoindex on | off;
    Default:    autoindex off;
    Context:    http, server, location
    
    # autoindex常用参数
    autoindex_exact_size off;
    默认为on, 显示出文件的确切大小,单位是bytes。
    修改为off,显示出文件的大概大小,单位是kB或者MB或者GB。
    
    autoindex_localtime on;
    默认为off,显示的文件时间为GMT时间。
    修改为on, 显示的文件时间为文件的服务器时间。
    
    charset utf-8,gbk;
    默认中文目录乱码,添加上解决乱码。
    

    配置示例:

    [root@web01 ~]# vim /etc/nginx/conf.d/module.conf
    server {
        listen 80;
        server_name module.oldboy.com;
        charset utf-8,gbk;
    
        localtion / {
            root /code;
            index index.html index.htm;
        }
    
        location /download {
            alias /module;
            autoindex on;
            autoindex_exact_size off;
            autoindex_localtime on;
        }
    }
    

    Nginx状态监控

    ngx_http_stub_status_module模块提供对基本状态信息的访问。
    默认情况下不构建此模块,应使用--with-http_stub_status_module配置参数启用它


    Syntax: stub_status;
    Default: —
    Context: server, location
    

    配置Nginx status示例

    server {
        listen 80;
        server_name module.oldboy.com;
        access_log off;
    
        location /nginx_status {
            stub_status;
        }
    }
    
    server {
            listen 80;
            server_name module.oldboy.com;
            charset utf-8,gbk;
    
            localtion / {
                    root /code;
                    index index.html index.htm;
            }
    
            location /download {
                    alias /module;
                    autoindex on;
                    autoindex_exact_size off;
                    autoindex_localtime on;
            }
    
            location /nginx_status {
                    stub_status;
            }
    }
    

    打开浏览器访问:http://module.oldboy.com/nginx_status

    1600769001115

    Active connections  # 当前活动的连接数
    accepts             # 当前的总连接数TCP
    handled             # 成功的连接数TCP
    requests            # 总的http请求数
    
    Reading             # 请求
    Writing             # 响应
    Waiting             # 等待的请求数,开启了keepalive
    
    # 注意, 一次TCP的连接,可以发起多次http的请求, 如下参数可配置进行验证
    keepalive_timeout  0;   # 类似于关闭长连接
    keepalive_timeout  65;  # 65s没有活动则断开连接
    

    Nginx访问控制

    基于IP的访问控制 http_access_module
    基于用户登陆认证 http_auth_basic_module


    #允许配置语法
    Syntax:    allow address | CIDR | unix: | all;
    Default:    —
    Context:    http, server, location, limit_except
    
    #拒绝配置语法
    Syntax:    deny address | CIDR | unix: | all;
    Default:    —
    Context:    http, server, location, limit_except
    

    1)访问控制配置示例,拒绝指定的IP,其他全部允许

    server {
        listen 80;
        server_name module.oldboy.com;
        access_log off;
    
        location /nginx_status {
            stub_status;
            deny 10.0.0.1;
            allow all;   
        }
    }
    
    1. 访问控制配置示例, 只允许谁能访问, 其它全部拒绝
    server {
        listen 80;
        server_name module.oldboy.com;
        access_log off;
    
        location /nginx_status {
            stub_status;
            allow   10.0.0.0/24;
            allow   127.0.0.1;
            deny    all;
        }
    }
    

    1)基于用户登陆认证配置语法

    #访问提示字符串
    Syntax: auth_basic string| off;
    Default: auth_basic off;
    Context: http, server, location, limit_except
    
    #账户密码文件
    Syntax: auth_basic_user_file file;
    Default: -
    Context: http, server, location, limit_except
    

    2)基于用户登陆认证配置实践

    #1.需要安装httpd-tools,该包中携带了htpasswd命令
    [root@web01 ~]# yum install httpd-tools
    #2.创建新的密码文件, -c创建新文件 -b允许命令行输入密码
    [root@web01 ~]# htpasswd -b -c /etc/nginx/auth_conf oldboy oldboy
    
    #3.nginx配置调用
    server {
        listen 80;
        server_name module.oldboy.com;
        access_log off;
    
        location /nginx_status {
            stub_status;
            auth_basic "Auth access Blog Input your Passwd!";
            auth_basic_user_file auth_conf;
        }
    }
    

    Nginx访问限制

    在企业中经常会遇到这种情况,服务器流量异常,负载过大等等。对于大流量恶意的攻击访问, 会带来带宽的浪费,服务器压力,影响业务,往往考虑对同一个ip的连接数,请求数、进行限制。

    ngx_http_limit_conn_module模块可以根据定义的key来限制每个键值的连接数,如同一个IP来源的连接数。

    limit_conn_module 连接频率限制

    limit_req_module 请求频率限制


    1)Nginx连接限制配置语法

    #模块名ngx_http_limit_conn_module
    Syntax:     limit_conn_zone key zone=name:size;
    Default: —
    Context: http
    
    Syntax:    limit_conn zone number;
    Default: —
    Context: http, server, location
    

    2)Nginx连接限制配置实践

    在一个公网Nginx中配置

    http{   #http层,设置
        # Limit settings
        limit_conn_zone $remote_addr zone=conn_zone:10m;
    server{ #server层调用
        #连接限制,限制同时最高1个连接
        limit_conn conn_zone 1;
        }
    }
    

    3)使用ab工具进行压力测试

    [root@web01 ~]# yum install -y httpd-tools
    [root@web01 ~]# ab -n 20 -c 2  http://127.0.0.1/index.html
    

    4)nginx日志结果

    2018/10/24 18:04:49 [error] 28656#28656: *1148 limiting connections by zone "conn_zone", client: 123.66.146.123, server: www.oldboy.com, request: "GET / HTTP/1.0", host: "www.oldboy.com"
    2018/10/24 18:04:49 [error] 28656#28656: *1155 limiting connections by zone "conn_zone", client: 123.66.146.123, server: www.oldboy.com, request: "GET / HTTP/1.0", host: "www.oldboy.com"
    2018/10/24 18:04:49 [error] 28656#28656: *1156 limiting connections by zone "conn_zone", client: 123.66.146.123, server: www.oldboy.com, request: "GET / HTTP/1.0", host: "www.oldboy.com"
    

    朋友公司Nginx配置文件:TP

    企业真实案例:

    1)Nginx请求限制配置语法

    #模块名ngx_http_limit_req_module
    Syntax:     limit_req_zone key zone=name:size rate=rate;
    Default: —
    Context: http
    
    Syntax:    limit_req zone number [burst=number] [nodelay];
    Default: —
    Context: http, server, location
    

    2)Nginx请求限制配置实战

    # http标签段定义请求限制, rate限制速率,限制一秒钟最多一个IP请求
    http {
        limit_req_zone $binary_remote_addr zone=req_zone:10m rate=1r/s;
    }
    server {
        listen 80;
        server_name module.oldboy.com;
        # 1r/s只接收一个请求,其余请求拒绝处理并返回错误码给客户端
        #limit_req zone=req_zone;
    
        # 请求超过1r/s,剩下的将被延迟处理,请求数超过burst定义的数量, 多余的请求返回503
        limit_req zone=req_zone burst=3 nodelay;
        location / {
            root /code;
            index index.html;
        }
    }
    

    3)使用ab工具进行压力测试

    [root@oldboyedu ~]# yum install -y httpd-tools
    [root@oldboyedu ~]# ab -n 20 -c 2  http://127.0.0.1/index.html
    

    4)nginx日志结果

    2018/10/24 07:38:53 [error] 81020#0: *8 limiting requests, excess: 3.998 by zone "req_zone", client: 10.0.0.10, server: module.oldboy.com, request: "GET /index.html HTTP/1.0", host: "10.0.0.10"
    2018/10/24 07:38:53 [error] 81020#0: *9 limiting requests, excess: 3.998 by zone "req_zone", client: 10.0.0.10, server: module.oldboy.com, request: "GET /index.html HTTP/1.0", host: "10.0.0.10"
    2018/10/24 07:38:53 [error] 81020#0: *10 limiting requests, excess: 3.998 by zone "req_zone", client: 10.0.0.10, server: module.oldboy.com, request: "GET /index.html HTTP/1.0", host: "10.0.0.10"
    

    5)nginx请求限制重定向(扩展)

    在nginx请求限制的过程中,我们可以自定义一个返回值,也就是错误页面的状态码。

    默认情况下是503

    1600772196939

    1)修改默认返回状态码

    server {
            listen 80;
            server_name module.oldboy.com;
            charset utf-8,gbk;
    
            location / {
                    root /code;
                    index index.html index.htm;
                    limit_req zone=req_zone burst=3 nodelay;
                    #修改返回状态码为:478
                    limit_req_status 478
            }
    }
    

    1600772230279

    2)页面太丑,重定向页面

    server {
            listen 80;
            server_name module.oldboy.com;
            charset utf-8,gbk;
    
            location / {
                    root /code;
                    index index.html index.htm;
                    limit_req zone=req_zone burst=3 nodelay;
                    limit_req_status 478
                    #重定错误页面
                    error_page 478 /err.html;
            }
    }
    
    vim /code/err.html
    <img style='100%;height:100%;' src=https://www.linuxnc.com/478_page.png>
    

    1600772268316

    棒极了~

    1600772286342


    我们先来回顾一下http协议的连接与请求,首先HTTP是建立在TCP基础之上,在完成HTTP请求需要先建立TCP三次握手(称为TCP连接),在连接的基础上在完成HTTP的请求。

    所以多个HTTP请求可以建立在一次TCP连接之上, 那么我们对请求的精度限制,当然比对一个连接的限制会更加的有效,因为同一时刻只允许一个TCP连接进入, 但是同一时刻多个HTTP请求可以通过一个TCP连接进入。所以针对HTTP的请求限制才是比较优的解决方案。

    Nginx Location

    使用Nginx Location可以控制访问网站的路径,但一个server可以有多个location配置, 多个location的优先级该如何区分


    location [=|^~|~|~*|!~|!~*|/] /uri/ { ...
    }
    

    匹配符 匹配规则 优先级
    = 精确匹配 1
    ^~ 以某个字符串开头 2
    ~ 区分大小写的正则匹配 3
    ~* 不区分大小写的正则匹配 4
    !~ 区分大小写不匹配的正则 5
    !~* 不区分大小写不匹配的正则 6
    / 通用匹配,任何请求都会匹配到 7
    [root@Nginx conf.d]# cat testserver.conf 
    server {
        listen 80;
        server_name www.oldboy.com;
        location / {
            default_type text/html;
            return 200 "location /";
        }
    
        location =/ {
            default_type text/html;
            return 200 "location =/";
        }
    
        location ~ / {
            default_type text/html;
            return 200 "location ~/";
        }
    
        # location ^~ / {
        #   default_type text/html;
        #   return 200 "location ^~";
        # }
    }
    

    # 优先级最高符号=
    [root@Nginx conf.d]# curl www.oldboy.com
    location =/
    
    # 注释掉精确匹配=, 重启Nginx
    [root@Nginx ~]# curl www.oldboy.com
    location ~/
    
    # 注释掉~, 重启Nginx
    [root@Nginx ~]# curl www.oldboy.com
    location /
    

    # 通用匹配,任何请求都会匹配到
    location / {
        ...
    }
    
    # 严格区分大小写,匹配以.php结尾的都走这个location    
    location ~ .php$ {
        ...
    }
    
    # 严格区分大小写,匹配以.jsp结尾的都走这个location 
    location ~ .jsp$ {
        ...
    }
    
    # 不区分大小写匹配,只要用户访问.jpg,gif,png,js,css 都走这条location
    location ~* .*.(jpg|gif|png|js|css)$ {
        ...
    }
    
    location ~* .(jpg|gif|png|js|css)$ {
        ...
    }
    
    # 不区分大小写匹配
    location ~* ".(sql|bak|tgz|tar.gz|.git)$" {
        ...
    }
    
    很高兴各位朋友能欣赏作品,本文版权归作者和博客园共有,欢迎转载,请在文章页面明显位置给出原文出处,否则将追究法律责任。 原文链接: https://www.cnblogs.com/strugger-0316
  • 相关阅读:
    javascript中map的用法
    洛谷P1057传球游戏-题解
    洛谷P1049装箱问题-题解
    洛谷P1048采药-题解
    洛谷P1044栈-题解
    洛谷P1040加分二叉树-题解
    洛谷P1005矩阵取数游戏-题解
    洛谷P1004方格取数-题解
    洛谷P1002过河卒-题解
    搜索
  • 原文地址:https://www.cnblogs.com/strugger-0316/p/14492890.html
Copyright © 2011-2022 走看看