chore: 更新环境变量和Docker配置

- 将前端和后端的环境变量中的端口号从8000改为8001
- 更新Dockerfile中的文件路径和构建上下文
- 修改docker-compose.yaml中的版本和端口映射
- 简化nginx.conf配置并调整日志级别
This commit is contained in:
zhangtao
2025-05-17 03:44:21 +08:00
parent e1d7d27967
commit 3b7a269c45
8 changed files with 14 additions and 15 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ ENVIRONMENT = "dev"
# 服务器配置
SERVER_HOST = '0.0.0.0' # 允许访问的IP地址
SERVER_PORT = 8000 # 服务端口
SERVER_PORT = 8001 # 服务端口
RELOAD = True # 是否自动重启
WORKERS = 1 # 启动进程数
FACTORY = True # 是否使用异步模式