docker-compose/nextcloud/nextcloud.env

25 lines
628 B
Bash
Raw Normal View History

2024-05-24 00:03:39 +02:00
# https://github.com/nextcloud/docker#base-version---apache
2024-05-23 13:51:39 +02:00
# Nextcloud database settings
MYSQL_DATABASE=nextcloud
MYSQL_USER=nextcloud
MYSQL_PASSWORD=YOUR_RANDOM_PASSWORD
2024-05-23 11:56:22 +00:00
# Reverse proxy settings
# If you're not using a reverse proxy (not recommended), you must comment out the following lines
TRUSTED_PROXIES=172.16.0.0/12
OVERWRITEHOST=cloud.example.com
OVERWRITEPROTOCOL=https
OVERWRITEWEBROOT=/
# PHP settings
2024-05-24 00:03:39 +02:00
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