Files
open-im-server/config/minio.yml
T

17 lines
564 B
YAML
Raw Normal View History

2024-04-24 15:43:03 +08:00
# Name of the bucket in MinIO
2024-04-19 22:23:08 +08:00
bucket: "openim"
2024-04-24 15:43:03 +08:00
# Access key ID for MinIO authentication
2024-04-19 22:23:08 +08:00
accessKeyID: "root"
2024-04-24 15:43:03 +08:00
# Secret access key for MinIO authentication
2024-04-19 22:23:08 +08:00
secretAccessKey: "openIM123"
2024-04-24 15:43:03 +08:00
# Session token for MinIO authentication (optional)
2024-04-19 22:23:08 +08:00
sessionToken: ''
2024-04-24 15:43:03 +08:00
# Internal address of the MinIO server
internalAddress: "localhost:10005"
# External address of the MinIO server, accessible from outside. Supports both HTTP and HTTPS using a domain name
2024-04-24 12:11:36 +08:00
externalAddress: "http://external_ip:10005"
2024-04-24 15:43:03 +08:00
# Flag to enable or disable public read access to the bucket
publicRead: false