Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ncp/NETWORKING/letsencrypt.sh')
-rw-r--r--bin/ncp/NETWORKING/letsencrypt.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ncp/NETWORKING/letsencrypt.sh b/bin/ncp/NETWORKING/letsencrypt.sh
index 2783bcad..06cfe5a4 100644
--- a/bin/ncp/NETWORKING/letsencrypt.sh
+++ b/bin/ncp/NETWORKING/letsencrypt.sh
@@ -112,14 +112,14 @@ EOF
sed -i "s|SSLCertificateKeyFile.*|SSLCertificateKeyFile /etc/letsencrypt/live/$DOMAIN_LOWERCASE/privkey.pem|" $vhostcfg2
# Configure Nextcloud
- local domain_index=12
+ local domain_index="${TRUSTED_DOMAINS[letsencrypt_1]}"
for dom in $DOMAIN $OTHER_DOMAIN; do
[[ "$dom" != "" ]] && {
ncc config:system:set trusted_domains $domain_index --value=$dom
((domain_index++))
}
done
- ncc config:system:set overwrite.cli.url --value=https://"$DOMAIN"/
+ set-nc-domain "$DOMAIN"
# delayed in bg so it does not kill the connection, and we get AJAX response
bash -c "sleep 2 && service apache2 reload" &>/dev/null &