将检测任务迁移python

This commit is contained in:
2025-09-30 17:34:54 +08:00
parent e82d919ebf
commit 197ff9b888
6 changed files with 28 additions and 18 deletions

View File

@@ -68,14 +68,14 @@ spring:
data:
# redis 配置
redis:
# 地址
host: localhost
# 地址 - 支持环境变量Docker环境使用容器名
host: ${SPRING_DATA_REDIS_HOST:localhost}
# 端口默认为6379
port: 6379
port: ${SPRING_DATA_REDIS_PORT:6379}
# 数据库索引
database: 0
# 密码
password:
password: ${SPRING_DATA_REDIS_PASSWORD:}
# 连接超时时间
timeout: 10s
lettuce:
@@ -127,13 +127,13 @@ springdoc:
paths-to-match: '/**'
packages-to-scan: com.ruoyi.web.controller.tool
# MinIO配置
# MinIO配置 - 支持环境变量配置
minio:
enabled: true
endpoint: http://49.232.154.205:10900
access-key: 4EsLD9g9OM09DT0HaBKj
secret-key: 05SFC5fleqTnaLRYBrxHiphMFYbGX5nYicj0WCHA
bucket: rtsp
enabled: ${MINIO_ENABLED:true}
endpoint: ${MINIO_ENDPOINT:http://49.232.154.205:10900}
access-key: ${MINIO_ACCESS_KEY:4EsLD9g9OM09DT0HaBKj}
secret-key: ${MINIO_SECRET_KEY:05SFC5fleqTnaLRYBrxHiphMFYbGX5nYicj0WCHA}
bucket: ${MINIO_BUCKET:rtsp}
# 防止XSS攻击
xss: