uci-nextcloud/dev.env

51 lines
1.7 KiB
Bash

# copy this file to just .env and edit for your instance
# GENERAL
# https://timezonedb.com/time-zones
TZ=America/Los_Angles
# NEXTCLOUD-MARIADB
MYSQL_ROOT_PASSWORD=uSW9ewBzWZglWCEUzV1i
MYSQL_PASSWORD=uSW9ewBzWZglWCEUzV1i
MYSQL_DATABASE=nextcloud
MYSQL_USER=nextcloud
# NEXTCLOUD
# IP of your reverse proxy
TRUSTED_PROXIES=10.0.0.2
NEXTCLOUD_DOMAIN=dev.cloud.kebler.net
# trusted domains must include NEXTCLOUD_DOMAIN above
NEXTCLOUD_TRUSTED_DOMAINS='dev.cloud.kebler.net giskard.kebler.net'
# 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
HOST_GROUP_ID=1001
HOST_USER_ID=1001
# USING SENDGRID FOR SENDING EMAILS (gmail example)
MAIL_DOMAIN=gmail.com
MAIL_FROM_ADDRESS=kebler.net
SMTP_SECURE=ssl
SMTP_HOST=smtp.gmail.com
SMTP_PORT=465
SMTP_NAME=kebler.net
SMTP_PASSWORD=jznlfiytllacqkso
# volumes can be found at /var/lib/docker/volumes but can be bound else via below
# DOCKER HOST Volume Bindings Parent Directory
# use only if you need/want to bind the three <db,src,user-files> volumes elsewhere for easier access
# will create up to three directories parent/nextcloud/<volume>
# must pre make all the directories <parent>/nextcloud/<volume> == db,src,user-files with proper owner/group
# use the provided script
# must uncomment driver and driver opts in docker-compose.yml in the volumes stanza
HOST_NEXTCLOUD_PARENT_DIR=./testing2
HOST_NEXTCLOUD_SRC=${HOST_NEXTCLOUD_PARENT_DIR}/app
HOST_NEXTCLOUD_USERFILES=${HOST_NEXTCLOUD_PARENT_DIR}/user-files
HOST_NEXTCLOUD_DB=${HOST_NEXTCLOUD_PARENT_DIR}/db