feat: added smtp settings
This commit is contained in:
parent
8e6075df01
commit
fe35b50124
2 changed files with 13 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
services:
|
||||
nc_db:
|
||||
image: mariadb:10.5
|
||||
image: mariadb:10.11
|
||||
container_name: nc_db
|
||||
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
|
||||
environment:
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
# https://github.com/nextcloud/docker#base-version---apache
|
||||
|
||||
# Nextcloud database settings
|
||||
MYSQL_DATABASE=nextcloud
|
||||
MYSQL_USER=nextcloud
|
||||
|
@ -12,3 +14,12 @@ OVERWRITEWEBROOT=/
|
|||
|
||||
# PHP settings
|
||||
PHP_UPLOAD_LIMIT=1G
|
||||
|
||||
# SMTP settings
|
||||
SMTP_HOST=smtp.example.com
|
||||
SMTP_PORT=465
|
||||
SMTP_SECURE=ssl
|
||||
SMTP_NAME=no-reply@example.com
|
||||
SMTP_PASSWORD=YOUR_SECURE_PASSWORD
|
||||
MAIL_FROM_ADDRESS=no-reply
|
||||
MAIL_DOMAIN=example.com
|
Loading…
Add table
Add a link
Reference in a new issue