2025-10-10 14:01:19 +03:00
|
|
|
# Application Environment
|
|
|
|
|
# APP_ENV: 'development' (shows detailed debug pages) or 'production' (shows clean error pages)
|
|
|
|
|
# IMPORTANT: Set to 'production' before deploying to hide sensitive debugging information!
|
2025-10-08 14:23:07 +03:00
|
|
|
APP_ENV=development
|
2025-10-08 18:54:34 +03:00
|
|
|
|
2025-10-08 19:08:27 +03:00
|
|
|
# Security - Encryption key (auto-generated during migration if not set)
|
2025-10-08 18:54:34 +03:00
|
|
|
# This key is used to encrypt sensitive data in the database (like SMTP passwords)
|
|
|
|
|
# IMPORTANT: Never share this key or commit it to version control!
|
|
|
|
|
APP_ENCRYPTION_KEY=
|
2025-10-08 14:23:07 +03:00
|
|
|
|
|
|
|
|
# Database
|
|
|
|
|
DB_HOST=localhost
|
|
|
|
|
DB_PORT=3306
|
|
|
|
|
DB_DATABASE=domain_monitor
|
|
|
|
|
DB_USERNAME=root
|
|
|
|
|
DB_PASSWORD=
|
|
|
|
|
|
|
|
|
|
# Session Security (set cookie_secure=1 only if using HTTPS)
|
|
|
|
|
SESSION_LIFETIME=1440
|
|
|
|
|
SESSION_COOKIE_HTTPONLY=1
|
|
|
|
|
SESSION_COOKIE_SECURE=0
|
2025-10-08 18:54:34 +03:00
|
|
|
SESSION_COOKIE_SAMESITE=Strict
|