access模块
access模块默认编辑进nginx
主要有两个指令 allow和deny
allow是允许
deny是禁止
当同时存在且存在多个时,依次向下执行当满足一个时不再继续
nginx配置
location /first {
deny 远程服务器ip;
allow all;
}
curl 服务器ip/first/1,txt
响应403错误,且allow all没有被执行
access模块默认编辑进nginx
主要有两个指令 allow和deny
allow是允许
deny是禁止
当同时存在且存在多个时,依次向下执行当满足一个时不再继续
nginx配置
location /first {
deny 远程服务器ip;
allow all;
}
curl 服务器ip/first/1,txt
响应403错误,且allow all没有被执行
本文标题:nginx--access模块(6.6更新)
本文链接:https://www.haomeiwen.com/subject/jtfqtktx.html
网友评论