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

36 lines
1.0 KiB
Plaintext
Raw Permalink 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
# https://timezonedb.com/time-zones
TZ=America/Los_Angles
# 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>"
# default set at onboarding, also can change password after onboarding
# IMPORTANT! if not set here then source backup script will use 'admin' as user by default
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>"
SSH_USER=root
SSH_PUBKEY="the public key"
SSH_ADDRESS=10.0.0.43
SSH_HOST_PORT
2024-09-12 16:21:59 -07:00