29 lines
856 B
Bash
29 lines
856 B
Bash
# Email Parameters
|
|
# - the hostname/IP address of your mailserver
|
|
MAIL_PORT_587_TCP_ADDR = smtp.gmail.com
|
|
#the port for the mailserver (probably 587, could be another)
|
|
MAIL_PORT_587_TCP_PORT = 587
|
|
# the default from address, and from name for emails
|
|
MAIL_ENV_FROM_ADDR=snipeit@kh3group.com
|
|
MAIL_ENV_FROM_NAME = Snipe Alerting
|
|
# - pick 'tls' for SMTP-over-SSL, 'tcp' for unencrypted
|
|
MAIL_ENV_ENCRYPTION = tls
|
|
# SMTP username and password
|
|
MAIL_ENV_USERNAME= support@kh3group.com
|
|
MAIL_ENV_PASSWORD=anruflwtglalnjto
|
|
|
|
|
|
# Snipe-IT Settings
|
|
APP_ENV=production
|
|
APP_DEBUG=false
|
|
APP_KEY=base64:D5oGA+zhFSVA3VwuoZoQ21RAcwBtJv/RGiqOcZ7BUvI=
|
|
APP_URL=https://ims.office.kh3group.com:8000
|
|
APP_TIMEZONE=Africa/Accra
|
|
APP_LOCALE=en
|
|
DB_CONNECTION=mysql
|
|
DB_HOST=db
|
|
DB_DATABASE=snipeit
|
|
DB_USERNAME=snipeit
|
|
DB_PASSWORD=pass@w0rd1
|
|
DB_PORT=3306
|
|
APP_TRUSTED_PROXIES=192.168.2.20
|