修复工作

This commit is contained in:
2025-10-01 17:48:57 +08:00
parent b4e8cf5c33
commit 5e54e4ae62
4 changed files with 26 additions and 23 deletions

View File

@@ -15,10 +15,10 @@ ruoyi:
# 开发环境配置
server:
# 服务器的HTTP端口默认为8080
port: 8080
# 监听本地地址,外网无法直接访问通过Nginx代理
address: ${SERVER_ADDRESS:127.0.0.1}
# 服务器的HTTP端口支持环境变量配置
port: ${SERVER_PORT:8080}
# 监听地址,支持环境变量配置
address: ${SERVER_ADDRESS:0.0.0.0}
servlet:
# 应用的访问路径
context-path: /
@@ -148,9 +148,9 @@ xss:
# 流媒体服务端口
mediasServer:
port: 8866
# 监听本地地址,外网无法直接访问通过Nginx代理
address: ${MEDIA_SERVER_ADDRESS:127.0.0.1}
port: ${MEDIA_SERVER_PORT:8866}
# 监听地址,支持环境变量配置
address: ${MEDIA_SERVER_ADDRESS:0.0.0.0}
# 网络超时15秒
netTimeout: 15000000
# 读写超时15秒