将此 .htaccess 指令转换为 nginx

将此 .htaccess 指令转换为 nginx
<Files urllist.txt>
    order allow,deny
    Allow from xx.xx.91.29
</Files>

答案1

这将转换为 nginx 配置中的以下内容:

location = /path/to/urllist.txt {
  allow xx.xx.91.29;
  deny all;
}

请参阅文档地点允许指令。

相关内容