为我将此 .htaccess 指令转换为 nginx

-5 nginx .htaccess

<Files urllist.txt>
    order allow,deny
    Allow from xx.xx.91.29
</Files>
Run Code Online (Sandbox Code Playgroud)

Ale*_*exD 6

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

location = /path/to/urllist.txt {
  allow xx.xx.91.29;
  deny all;
}
Run Code Online (Sandbox Code Playgroud)

有关位置允许指令,请参阅文档。