-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (29 loc) · 1.43 KB
/
Copy path.env.example
File metadata and controls
35 lines (29 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# ─── General ──────────────────────────────────────────
APP_DEBUG=false
# Admin login password for /backend/login
# Supports plaintext or bcrypt hash: php -r "echo password_hash('yourpassword', PASSWORD_BCRYPT);"
ADMIN_PASSWORD=changeme
# ─── SMTP (E-Mail Alerts) ────────────────────────────
SMTP_HOST=smtp.example.com
SMTP_PORT=587
SMTP_USER=your_username
SMTP_PASSWORD=your_password
SMTP_FROM_EMAIL=monitoring@example.com
SMTP_FROM_NAME="TinyMon"
SMTP_ENCRYPTION=tls
# Comma-separated list of alert recipients
ALERT_RECIPIENTS=admin@example.com
# Debug: redirect all outgoing emails to this address (requires APP_DEBUG=true)
# DEBUG_EMAIL=
# ─── Push API ────────────────────────────────────────
# API key for external systems (K8s Operator etc.)
# Authenticates via: Authorization: Bearer <key>
# Leave empty to disable push API
PUSH_API_KEY=
# ─── Web Push ────────────────────────────────────────
# VAPID keys for browser push notifications
# Leave empty to auto-generate on first use
VAPID_PUBLIC_KEY=
VAPID_PRIVATE_KEY=
# Contact email for push service providers (required by VAPID spec)
VAPID_SUBJECT=mailto:admin@example.com