修复actuator暴漏问题

Signed-off-by: 威士忌的纯度 <whr888888@vip.qq.com>
This commit is contained in:
威士忌的纯度 2025-03-07 10:22:52 +00:00 committed by Gitee
parent 8c096cba8d
commit 1cb262daa3
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -29,7 +29,7 @@ http {
}
# 避免actuator暴露
if ($request_uri ~ "/actuator") {
if ($uri ~ "/actuator") {
return 403;
}