谁能帮我解决 nginx“位置” 我想将此块添加到我的 nginx conf
location / {
limit_conn zone_name 8;
}
我需要将位置修改为 /folder/index.php?file=x 其中 x 可以是字符串(例如 7fe8j)
谢谢
谁能帮我解决 nginx“位置” 我想将此块添加到我的 nginx conf
location / {
limit_conn zone_name 8;
}
我需要将位置修改为 /folder/index.php?file=x 其中 x 可以是字符串(例如 7fe8j)
谢谢
简短的回答是你不能。
limit_conn
指令仅适用于http
,server
,location
上下文。Andlocation
指令仅匹配/folder/index.php
没有查询参数 ( ) 的 URI (?file=x
)。