在nginx conf中快速帮助

任何人都可以帮助我的nginx“位置”我想添加这个块到我的nginx conf

location / { limit_conn zone_name 8; } 

我需要修改位置/folder/index.php?file=x其中x可以是一个string(例如7fe8j)

谢谢

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

简短的答案是你不能。

limit_conn指令只能在httpserverlocation context中使用。 而location指令只与URI( /folder/index.php )匹配,没有查询参数( ?file=x )。