nginx--access模块(6.6更新)

2020-06-07  本文已影响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

上一篇下一篇

猜你喜欢

热点阅读