4 Commits

Author SHA1 Message Date
刘继东
5fb711f2a5 Pre Merge pull request !365 from 刘继东/N/A 2025-03-10 03:45:50 +00:00
若依
a6bcebb62b !397 修复actuator暴漏问题
Merge pull request !397 from 威士忌的纯度/N/A
2025-03-10 03:45:34 +00:00
威士忌的纯度
1cb262daa3 修复actuator暴漏问题
Signed-off-by: 威士忌的纯度 <whr888888@vip.qq.com>
2025-03-07 10:22:52 +00:00
刘继东
014da3c9a5 去掉sentinel依赖
代码生成模块没必要增加sentinel依赖

Signed-off-by: 刘继东 <wwwliujidong@163.com>
2024-05-07 00:36:04 +00:00
2 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -30,10 +30,10 @@
</dependency>
<!-- SpringCloud Alibaba Sentinel -->
<dependency>
<!--<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
</dependency>-->
<!-- SpringBoot Actuator -->
<dependency>