nginx conf 中的快速帮助

nginx conf 中的快速帮助

有人能帮我解决 nginx“位置”问题吗?我想把这个块添加到我的 nginx conf 中

 location / {
       limit_conn zone_name 8; 
     }

我需要将位置修改为 /folder/index.php?file=x 其中 x 可以是字符串(例如 7fe8j)

谢谢

答案1

我需要修改location/folder/index.php?file=x其中 x 可以是字符串(例如 7fe8j)

简短的回答是:你不能。

limit_conn指令仅在httpserverlocation上下文中有效。并且location/folder/index.php指令仅与没有查询参数 ( )的 URI ( ) 匹配?file=x

相关内容