From 7bf34a91ab2007de8fb431516936b53eb4e430a3 Mon Sep 17 00:00:00 2001 From: DerFossiBaer <56678897+DerFossiBaer@users.noreply.github.com> Date: Sun, 2 May 2021 01:10:18 +0200 Subject: [PATCH] Update zamba.conf.example Added nextcloud part --- conf/zamba.conf.example | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/conf/zamba.conf.example b/conf/zamba.conf.example index 336fd88..b1f9a76 100644 --- a/conf/zamba.conf.example +++ b/conf/zamba.conf.example @@ -109,3 +109,20 @@ MATRIX_FQDN="matrix.zmb.rocks" # Define the FQDN for the Element Web virtual host MATRIX_ELEMENT_FQDN="element.zmb.rocks" + +############### Nextcloud-Section ############### + +# Define the FQDN of your Matrix server +NEXTCLOUD_FQDN="nc1.zmb.rocks" + +# The initial admin-user which will be configured +NEXTCLOUD_ADMIN_USR="zmb-admin" + +# Build a strong password for this user. Username and password will shown at the end of the instalation. +NEXTCLOUD_ADMIN_PWD="$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)" + +# Defines the data directory, which will be createt under LXC_SHAREFS_MOUNTPOINT +NEXTCLOUD_DATA="nc_data" + + +