From 9f75c3ddca1a99614441644902f65b814cbaa206 Mon Sep 17 00:00:00 2001 From: LRVT <21357789+l4rm4nd@users.noreply.github.com> Date: Thu, 16 May 2024 18:34:43 +0200 Subject: [PATCH] Create .env --- examples/nextcloud/.env | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 examples/nextcloud/.env diff --git a/examples/nextcloud/.env b/examples/nextcloud/.env new file mode 100644 index 0000000..067bf44 --- /dev/null +++ b/examples/nextcloud/.env @@ -0,0 +1,21 @@ +# settings for the mariadb container +MYSQL_HOST=nextcloud-db +MYSQL_DATABASE=nextcloud +MYSQL_USER=nextcloud +MYSQL_PASSWORD=nextcloud +MYSQL_ROOT_PASSWORD=nextcloud-root-pw +MYSQL_PUID=1000 +MYSQL_PGID=1000 +MSQL_TZ=Europe/Berlin + +# settings for the nextcloud container +NC_PUID=1000 +NC_PGID=1000 +NC_TRUSTED_PROXIES=10.0.0.0/8,172.16.0.0/12,192.168.0.0/16 +#NC_OVERWRITEPROTOCOL=https +#NC_OVERWRITECLIURL=https://cloud.example.com +#NC_OVERWRITEHOST=cloud.example.com + +# settings for the redis container +REDIS_HOST=nextcloud-redis +REDIS_PASSWORD=nextcloud