uci-docker-nextcloud/deploy/nextcloud.env.example

41 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-09-12 16:21:59 -07:00
# must invoke docker compose with supplied scripts.
# Best to copy this file to just .env and edit for your instance
COMPOSE_PROJECT_NAME=nextcloud
NAME=$COMPOSE_PROJECT_NAME
# NEXTCLOUD_DEV=true
# default command is start
# NEXTCLOUD_CMD=install
# https://timezonedb.com/time-zones
TZ=America/Los_Angles
#ISO 3166-1 country codes
# NEXTCLOUD_REGION=US
# mariadb/mysql, defaults, no need to change this db is not exposed outside container
# MYSQL_ROOT_PASSWORD=nextcloud1234
# MYSQL_HOST=nextcloud
# MYSQL_PASSWORD=nextcloud1234
# MYSQL_DATABASE=nextcloud
# MYSQL_USER=nextcloud
# NEXTCLOUD
TRUSTED_PROXIES="<ip where your reverse proxy runs>"
NEXTCLOUD_DOMAIN="<domain of reverse proxy>"
TRUSTED_DOMAINS="$NEXTCLOUD_DOMAIN <machine domain running docker> <IP of machine running docker>"
# defaults, password can be changed after install
# NEXTCLOUD_ADMIN_USER=admin
# NEXTCLOUD_ADMIN_PASSWORD=admin
# USING SENDGRID FOR SENDING EMAILS (gmail example)
MAIL_DOMAIN=gmail.com
MAIL_FROM_ADDRESS="<gmail address>"
SMTP_SECURE=ssl
SMTP_HOST=smtp.gmail.com
SMTP_PORT=465
SMTP_NAME="<just your google account name (no @gmail.com)>"
SMTP_PASSWORD="<a 16 character app password generated from your google account>"