4 Commits

Author SHA1 Message Date
songo
968bb8a11f Pre Merge pull request !103 from songo/N/A 2025-03-10 03:45:37 +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
丢节操吧
10f97aee5d update docker/mysql/dockerfile.
增加执行权限,解决启动mysql容器后,不自动执行sql脚本的问题
2021-09-11 10:18:45 +00:00
2 changed files with 3 additions and 1 deletions

View File

@@ -5,3 +5,5 @@ MAINTAINER ruoyi
# 执行sql脚本
ADD ./db/*.sql /docker-entrypoint-initdb.d/
# 增加执行权限解决启动mysql容器后不自动执行sql脚本的问题
RUN chmod a+x /docker-entrypoint-initdb.d

View File

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