23 lines
792 B
Bash
23 lines
792 B
Bash
SERVICE_NAME=wiki
|
|
DOMAIN_NAME=example.com
|
|
DB_PASSWORD=
|
|
MAIL_DRIVER=smtp
|
|
# SMTP server host address
|
|
MAIL_HOST=smtp.mailgun.org
|
|
# SMTP server port
|
|
# Using port 465 will force connections to be via TLS
|
|
MAIL_PORT=587
|
|
# Connection encryption to use
|
|
# Valid values are: tls, null
|
|
# Using 'tls' will require either TLS or STARTTLS to be used.
|
|
# When using 'null' STARTTLS will still be attempted if announced
|
|
# as supported by your SMTP server.
|
|
# Using port 465 above will force connections to be via TLS.
|
|
MAIL_ENCRYPTION=tls
|
|
# Authentication details for your SMTP service
|
|
MAIL_USERNAME=user@provider.tld
|
|
MAIL_PASSWORD=onlyifneeded
|
|
# The "from" email address for outgoing email
|
|
MAIL_FROM=noreply@${DOMAIN_NAME}
|
|
# The "from" name used for outgoing email
|
|
MAIL_FROM_NAME= ${DOMAIN_NAME} ${SERVICE_NAME} |