Improved cronjob Fixed Views Added env encryption key for encrypting sensitive data in database.
20 lines
560 B
Plaintext
20 lines
560 B
Plaintext
# Application
|
|
APP_ENV=development
|
|
|
|
# Security - Generate encryption key using: php -r "echo base64_encode(random_bytes(32));"
|
|
# 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=
|
|
|
|
# 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
|
|
SESSION_COOKIE_SAMESITE=Strict |