1. **Docker-Compose für Entwicklung optimieren** 2. **Umgebungsvariablen für lokale Entwicklung** 3. **Service-Abhängigkeiten** 4. **Docker-Compose für Produktion** 5. **Dokumentation**
18 lines
694 B
Plaintext
18 lines
694 B
Plaintext
// Zookeeper JAAS Configuration for Production
|
|
// =============================================================================
|
|
// This file configures SASL authentication for Zookeeper in production
|
|
// Change the passwords to strong, randomly generated values
|
|
// =============================================================================
|
|
|
|
Server {
|
|
org.apache.zookeeper.server.auth.DigestLoginModule required
|
|
user_admin="CHANGE_ME_STRONG_ZOOKEEPER_ADMIN_PASSWORD"
|
|
user_kafka="CHANGE_ME_STRONG_ZOOKEEPER_KAFKA_PASSWORD";
|
|
};
|
|
|
|
Client {
|
|
org.apache.zookeeper.server.auth.DigestLoginModule required
|
|
username="kafka"
|
|
password="CHANGE_ME_STRONG_ZOOKEEPER_KAFKA_PASSWORD";
|
|
};
|