任何人都可以帮助我的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指令只能在http , server , location context中使用。 而location指令只与URI( /folder/index.php )匹配,没有查询参数( ?file=x )。