fix: 修改文件上传大小限制20M
All checks were successful
Web UI CI/CD / build-and-deploy (push) Successful in 10s

This commit is contained in:
lzh
2026-03-24 18:59:41 +08:00
parent c700ab38f4
commit 7d22e4b395

View File

@@ -20,6 +20,8 @@ server {
# 后端服务在 Docker 容器中,使用容器名访问(都在 1panel-network 网络中)
# 如果后端在宿主机上改为http://172.17.0.1:48080/admin-api
location /admin-api {
client_max_body_size 20M;
# 后端服务地址
# 方案1使用容器名推荐自动 DNS 解析)- 如果后端监听 0.0.0.0
proxy_pass http://aiot-gateway:48080/admin-api;