Files

41 lines
1.1 KiB
YAML
Raw Permalink Normal View History

## Kafka authentication
username:
password:
2024-04-24 15:42:43 +08:00
# Producer acknowledgment settings
producerAck:
2024-04-24 15:42:43 +08:00
# Compression type to use (e.g., none, gzip, snappy)
2024-08-21 15:10:43 +08:00
compressType: none
2024-04-24 15:42:43 +08:00
# List of Kafka broker addresses
address: [localhost:19094]
2024-04-24 15:42:43 +08:00
# Kafka topic for Redis integration
2024-08-21 15:10:43 +08:00
toRedisTopic: toRedis
2024-04-24 15:42:43 +08:00
# Kafka topic for MongoDB integration
2024-08-21 15:10:43 +08:00
toMongoTopic: toMongo
2024-04-24 15:42:43 +08:00
# Kafka topic for push notifications
2024-08-21 15:10:43 +08:00
toPushTopic: toPush
# Kafka topic for offline push notifications
toOfflinePushTopic: toOfflinePush
2024-04-24 15:42:43 +08:00
# Consumer group ID for Redis topic
2024-04-19 22:23:08 +08:00
toRedisGroupID: redis
2024-04-24 15:42:43 +08:00
# Consumer group ID for MongoDB topic
2024-04-19 22:23:08 +08:00
toMongoGroupID: mongo
2024-04-24 15:42:43 +08:00
# Consumer group ID for push notifications topic
2024-04-19 22:23:08 +08:00
toPushGroupID: push
# Consumer group ID for offline push notifications topic
toOfflinePushGroupID: offlinePush
2024-04-24 15:42:43 +08:00
# TLS (Transport Layer Security) configuration
2024-04-19 22:23:08 +08:00
tls:
2024-04-24 15:42:43 +08:00
# Enable or disable TLS
2024-04-19 22:23:08 +08:00
enableTLS: false
2024-04-24 15:42:43 +08:00
# CA certificate file path
caCrt:
2024-04-24 15:42:43 +08:00
# Client certificate file path
clientCrt:
2024-04-24 15:42:43 +08:00
# Client key file path
clientKey:
2024-04-24 15:42:43 +08:00
# Client key password
clientKeyPwd:
2024-04-24 15:42:43 +08:00
# Whether to skip TLS verification (not recommended for production)
2024-04-19 22:23:08 +08:00
insecureSkipVerify: false