parent
640d865f6a
commit
715bcd07ca
@ -1,18 +1,36 @@
|
|||||||
|
# Username for authentication
|
||||||
username: ''
|
username: ''
|
||||||
|
# Password for authentication
|
||||||
password: ''
|
password: ''
|
||||||
|
# Producer acknowledgment settings
|
||||||
producerAck: ""
|
producerAck: ""
|
||||||
|
# Compression type to use (e.g., none, gzip, snappy)
|
||||||
compressType: "none"
|
compressType: "none"
|
||||||
|
# List of Kafka broker addresses
|
||||||
address: [ localhost:19094 ]
|
address: [ localhost:19094 ]
|
||||||
|
# Kafka topic for Redis integration
|
||||||
toRedisTopic: "toRedis"
|
toRedisTopic: "toRedis"
|
||||||
|
# Kafka topic for MongoDB integration
|
||||||
toMongoTopic: "toMongo"
|
toMongoTopic: "toMongo"
|
||||||
|
# Kafka topic for push notifications
|
||||||
toPushTopic: "toPush"
|
toPushTopic: "toPush"
|
||||||
|
# Consumer group ID for Redis topic
|
||||||
toRedisGroupID: redis
|
toRedisGroupID: redis
|
||||||
|
# Consumer group ID for MongoDB topic
|
||||||
toMongoGroupID: mongo
|
toMongoGroupID: mongo
|
||||||
|
# Consumer group ID for push notifications topic
|
||||||
toPushGroupID: push
|
toPushGroupID: push
|
||||||
|
# TLS (Transport Layer Security) configuration
|
||||||
tls:
|
tls:
|
||||||
|
# Enable or disable TLS
|
||||||
enableTLS: false
|
enableTLS: false
|
||||||
|
# CA certificate file path
|
||||||
caCrt: ""
|
caCrt: ""
|
||||||
|
# Client certificate file path
|
||||||
clientCrt: ""
|
clientCrt: ""
|
||||||
|
# Client key file path
|
||||||
clientKey: ""
|
clientKey: ""
|
||||||
|
# Client key password
|
||||||
clientKeyPwd: ""
|
clientKeyPwd: ""
|
||||||
|
# Whether to skip TLS verification (not recommended for production)
|
||||||
insecureSkipVerify: false
|
insecureSkipVerify: false
|
||||||
|
@ -1,7 +1,16 @@
|
|||||||
|
# Name of the bucket in MinIO
|
||||||
bucket: "openim"
|
bucket: "openim"
|
||||||
|
# Access key ID for MinIO authentication
|
||||||
accessKeyID: "root"
|
accessKeyID: "root"
|
||||||
|
# Secret access key for MinIO authentication
|
||||||
secretAccessKey: "openIM123"
|
secretAccessKey: "openIM123"
|
||||||
|
# Session token for MinIO authentication (optional)
|
||||||
sessionToken: ''
|
sessionToken: ''
|
||||||
|
# Internal address of the MinIO server
|
||||||
internalAddress: "localhost:10005"
|
internalAddress: "localhost:10005"
|
||||||
|
# External address of the MinIO server, accessible from outside. Supports both HTTP and HTTPS using a domain name
|
||||||
externalAddress: "http://external_ip:10005"
|
externalAddress: "http://external_ip:10005"
|
||||||
publicRead: false
|
# Flag to enable or disable public read access to the bucket
|
||||||
|
publicRead: false
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in new issue