Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion maintain/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ services:
- spring.rabbitmq.virtual-host=/track

# MINIO数据端口
- spring_my_minio_url=http://${MINIO_HOST:-minio}:${MINIO_PORT:-9000}
- spring_my_minio_url=http://${MINIO_HOST:-minio}:${MINIO_PORT:-8000}
- spring_my_minio_bucket=maintain
- spring_my_minio_accessKey=${MINIO_ACCESSKEY:?required}
- spring_my_minio_secretKey=${MINIO_SECRETKEY:?required}
Expand Down
2 changes: 2 additions & 0 deletions video-nginx/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ services:
- source: mdvr-live-https.conf.template
target: /etc/nginx/templates/mdvr-live.conf.template
environment:
- MINIO_HOST=${MINIO_HOST}
- MINIO_PORT=${MINIO_PORT}
- VIDEO_PORT_HTTPS_0=${VIDEO_PORT_HTTPS_0}
- VIDEO_PORT_HTTPS_1=${VIDEO_PORT_HTTPS_1}
- VIDEO_PORT_HTTPS_2=${VIDEO_PORT_HTTPS_2}
Expand Down
2 changes: 1 addition & 1 deletion video-nginx/conf/conf.d/443.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ server {

# minio录像云存储
location /minio/ {
proxy_pass http://minio:9000/;
proxy_pass http://${MINIO_HOST}:${MINIO_PORT}/;
}

#access_log /var/log/nginx/host.access.log main;
Expand Down
2 changes: 1 addition & 1 deletion video/compose.storage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
# 启用mini 录像将存放minio中do
- spring_minio_enabled=true
- spring_minio_domain=https://${VIDEO_HOSTNAME:?required}:${VIDEO_PORT_HTTPS_0}/minio
- spring_minio_endpoint=http://minio:9000
- spring_minio_endpoint=http://${MINIO_HOST:-minio}:${MINIO_PORT:-8000}
- spring_minio_accessKey=${MINIO_ACCESSKEY:?required}
- spring_minio_secretKey=${MINIO_SECRETKEY:?required}
- spring_minio_bucketName=storage
Expand Down