Chad
f56b3da23d
* Create explicit file for cron, add two automations from fixes. * Merge the OnlyOffice project into the Nextcloud project. Enhance comments and changelog. Make the container names consistent. * Found the link. :) * Add more variables. * Add a TBD file for mail server. * Create new script which will replace most the existing single purpose management scripts. * Add limit to DNS so that if Internet goes out it does not max system resources. * Prevent OnlyOffice from getting too hungry. * Ensure Reverse Proxy always has at least some resources. * Separate build. Add stats -s and combination option -A. * Make script config file aware. Add comments. * Add more comments. * Fix comments. * Further determine resource allocations. * Also avoid checking for cron's call to the program. * Add clean and log parameters. Some clean up. * Update setups to have DIR first. * Remove files taken over by manage script. * Cleaning comments and output.
56 lines
1.7 KiB
Plaintext
56 lines
1.7 KiB
Plaintext
# Example environment file for Nextcloud stack, should be copied as `.env`. The
|
|
# variables here only apply to the compose file. If you need it passed to a
|
|
# container then it also needs specified in its `environment:` operator.
|
|
#
|
|
# ** All usernames and passwords need changed before running in production! **
|
|
#
|
|
# Full guide on the Nextcloud parameters which may be supplied:
|
|
# https://github.com/docker-library/docs/blob/master/nextcloud/README.md#auto-configuration-via-environment-variables
|
|
|
|
#
|
|
## Nextcloud ##
|
|
#
|
|
|
|
NEXTCLOUD_ADMIN_USER=nc_admin
|
|
NEXTCLOUD_ADMIN_PASSWORD=SuperDuperSecretPassword
|
|
|
|
PHP_MEMORY_LIMIT=2G
|
|
PHP_UPLOAD_LIMIT=5G
|
|
|
|
#
|
|
## MariaDB ##
|
|
#
|
|
# Should load automatically the first run. Then config.php is the source of
|
|
# truth for these values. So, if something like the DB password is changed,
|
|
# updating it here will have no effect. This is only used for the install.
|
|
|
|
MYSQL_HOST=nc-db
|
|
MYSQL_DATABASE=nextcloud
|
|
MYSQL_ROOT_PASSWORD=ChangeMe
|
|
MYSQL_USER=nc
|
|
MYSQL_PASSWORD=changeme
|
|
|
|
#
|
|
## Redis ##
|
|
#
|
|
# Installs automagically if both of these parameters are supplied.
|
|
|
|
REDIS_HOST=nc-redis
|
|
REDIS_HOST_PASSWORD=someredispassword
|
|
|
|
#
|
|
## OnlyOffice ##
|
|
#
|
|
# How Nextcloud's ONLYOFFICE Admin Settings should be set up:
|
|
# OO Address: https://FQDN-For-Reverse-Proxied-OO-Server
|
|
# OO Secret: Contents-Of-$JWT_SECRET
|
|
# OO Header:
|
|
# OO Internal Address: http://docker-server-ip:8081 ?OR http://nc-oo:8081?
|
|
# NC Internal Address: http://docker-server-ip:8080 ?OR http://nc-app:8080?
|
|
#
|
|
# Documentation which references the variable(s) below, Nextcloud link does not cover them:
|
|
# https://helpcenter.onlyoffice.com/installation/docs-configure-jwt.aspx
|
|
|
|
# Secret key which is used above in the Nextcloud ONLYOFFICE Administration UI.
|
|
JWT_SECRET=abc123
|