30 lines
1.4 KiB
Bash
30 lines
1.4 KiB
Bash
# ──────────────────────────────────────────────────────────────────
|
|
# Komodo — Stack Environment Template
|
|
# Kopieren nach: stack.env (NICHT in Git committen!)
|
|
# ──────────────────────────────────────────────────────────────────
|
|
#
|
|
# Secrets generieren:
|
|
# openssl rand -hex 32
|
|
#
|
|
# MongoDB-Passwort ZUSAETZLICH als Datei speichern:
|
|
# echo "dein-passwort" > /mnt/user/appdata/secrets/komodo_mongo_password.txt
|
|
# chmod 600 /mnt/user/appdata/secrets/komodo_mongo_password.txt
|
|
#
|
|
# ──────────────────────────────────────────────────────────────────
|
|
|
|
# MongoDB Root-Passwort (muss mit Datei uebereinstimmen)
|
|
KOMODO_MONGO_PASSWORD=
|
|
|
|
# Komodo Secret Key (JWT-Signing, min. 32 Zeichen)
|
|
KOMODO_SECRET_KEY=
|
|
|
|
# Komodo Webhook Secret (Gitea -> Komodo, eigener Wert)
|
|
KOMODO_WEBHOOK_SECRET=
|
|
|
|
# Komodo JWT Secret (min. 32 Zeichen)
|
|
KOMODO_JWT_SECRET=
|
|
|
|
# Legacy v1: Periphery Passkey (Core <-> Agent Authentifizierung)
|
|
# Komodo v2 nutzt Public-Key-Authentifizierung ueber /config/keys.
|
|
KOMODO_PERIPHERY_PASSKEY=
|