美文网首页
nginx--access模块(6.6更新)

nginx--access模块(6.6更新)

作者: 温岭夹糕 | 来源:发表于2020-06-07 12:44 被阅读0次

    access模块

    access模块默认编辑进nginx
    主要有两个指令 allow和deny
    allow是允许
    deny是禁止
    当同时存在且存在多个时,依次向下执行当满足一个时不再继续
    nginx配置

           location /first {
              deny 远程服务器ip;
              allow all;
           }
    
    

    curl 服务器ip/first/1,txt
    响应403错误,且allow all没有被执行

    auth_request模块

    个人理解就是鉴权中间件
    参考博客:https://blog.csdn.net/weixin_30502965/article/details/97631910?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecase&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.nonecase

    相关文章

      网友评论

          本文标题:nginx--access模块(6.6更新)

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