Apparently, *Firefly III* thinks it is a good idea to send an email to the administrator every time it encounters an error. This is particularly annoying when doing database maintenance, as the Kubernetes health checks trigger an error every minute, which *Firefly III* helpfully notifies me about. Fortunately, this behavior can be disabled.
32 lines
571 B
Bash
32 lines
571 B
Bash
APP_ENV=local
|
|
|
|
SITE_OWNER=dustin@hatch.name
|
|
|
|
TZ=America/Chicago
|
|
|
|
TRUSTED_PROXIES=172.30.0.160/28
|
|
|
|
DB_CONNECTION=pgsql
|
|
DB_HOST=default.postgresql
|
|
DB_PORT=5432
|
|
DB_USERNAME=firefly-iii.firefly
|
|
DB_DATABASE=firefly
|
|
|
|
CACHE_DRIVER=redis
|
|
SESSION_DRIVER=redis
|
|
|
|
REDIS_SCHEME=tcp
|
|
REDIS_HOST=redis
|
|
REDIS_PORT=6379
|
|
|
|
AUTHENTICATION_GUARD=remote_user_guard
|
|
AUTHENTICATION_GUARD_HEADER=Remote-User
|
|
AUTHENTICATION_GUARD_EMAIL=Remote-Email
|
|
|
|
MAIL_MAILER=smtp
|
|
MAIL_HOST=mail.pyrocufflink.blue
|
|
MAIL_PORT=25
|
|
MAIL_ENCRYPTION=null
|
|
MAIL_FROM=firefly-iii@pyrocufflink.net
|
|
SEND_ERROR_MESSAGE=false
|