We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8626133 commit 8713183Copy full SHA for 8713183
config/default.js
@@ -14,10 +14,10 @@ module.exports = {
14
KAFKA_URL: process.env.KAFKA_URL || 'ssl://kafka-host:9093',
15
16
// The client cert, can be (1) the path to the cert file, or (2) the cert content
17
- KAFKA_CLIENT_CERT: process.env.KAFKA_CLIENT_CERT || './docker/kafka/kafka-ssl/client.crt',
+ KAFKA_CLIENT_CERT: process.env.KAFKA_CLIENT_CERT,
18
19
// The client cert key, can be (1) the path to the cert key file, or (2) the cert key content
20
- KAFKA_CLIENT_CERT_KEY: process.env.KAFKA_CLIENT_CERT_KEY || './docker/kafka/kafka-ssl/client.key',
+ KAFKA_CLIENT_CERT_KEY: process.env.KAFKA_CLIENT_CERT_KEY,
21
22
KAFKA_ERROR_TOPIC: process.env.KAFKA_ERROR_TOPIC || 'common.error.reporting',
23
0 commit comments