a3188264b0
Env-based notifier creds were unreliable; use secrets/smtp_*.txt, RFC5322 sender, and implicit TLS to 0012.de Plesk. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
552 B
Bash
17 lines
552 B
Bash
# Copy to .env on the deploy host. Never commit .env.
|
|
|
|
TZ=Europe/Berlin
|
|
|
|
# Optional: Authelia log level (info|debug|trace)
|
|
# AUTHELIA_LOG_LEVEL=info
|
|
|
|
# --- SMTP credentials (0012.de Plesk) ---
|
|
# Authelia reads these from secret files (not from env):
|
|
# secrets/smtp_username.txt e.g. auth@0012.de
|
|
# secrets/smtp_password.txt
|
|
# secrets/smtp_sender.txt e.g. Authelia <auth@0012.de>
|
|
# Create them on the server (see README). Keep this .env for your own notes if useful:
|
|
SMTP_USER=auth@0012.de
|
|
SMTP_PASSWORD=
|
|
SMTP_SENDER=Authelia <auth@0012.de>
|