将检测任务迁移python
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user