-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.env.docker
More file actions
23 lines (19 loc) · 751 Bytes
/
.env.docker
File metadata and controls
23 lines (19 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ISMS Builder – Docker Environment
# Kopiere diese Datei und setze JWT_SECRET auf einen sicheren Wert:
# openssl rand -hex 32
# PFLICHTFELD – mindestens 32 zufällige Zeichen
JWT_SECRET=CHANGE_ME_USE_OPENSSL_RAND_HEX_32
JWT_EXPIRES_IN=8h
DEV_HEADER_AUTH=false
STORAGE_BACKEND=sqlite
PORT=3000
# SSL (optional – Zertifikat in den Container mounten und Pfade setzen)
# SSL_CERT_FILE=/app/ssl/cert.pem
# SSL_KEY_FILE=/app/ssl/key.pem
# E-Mail / SMTP (optional – ohne diese Vars sind Benachrichtigungen deaktiviert)
# SMTP_HOST=smtp.example.com
# SMTP_PORT=587
# SMTP_SECURE=false # true = SSL/TLS (Port 465), false = STARTTLS
# SMTP_USER=isms@example.com
# SMTP_PASS=your-smtp-password
# SMTP_FROM=ISMS Builder <isms@example.com>