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

github.com/nextcloud/vm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorDaniel Hansson <github@hanssonit.se>2020-11-29 04:27:40 +0300
committerGitHub <noreply@github.com>2020-11-29 04:27:40 +0300
commit7dfbbb70da2f322d772dc3bbe1950fefa6b39664 (patch)
treec289ef11d779677f86b63d630b35758db1a0c12f /static
parent2e8a9df6c13c1bcd265a2abde4f28a3bdde82bce (diff)
fixes (#1701)
Diffstat (limited to 'static')
-rw-r--r--static/index.php4
-rw-r--r--static/setup_secure_permissions_nextcloud.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/static/index.php b/static/index.php
index beea8b86..90b789b9 100644
--- a/static/index.php
+++ b/static/index.php
@@ -80,7 +80,7 @@
<br>
<div class="information">
<p>Thank you for downloading the Nextcloud VM, you made a good choice! If you see this page, you have run the first setup, and you are now ready to start using Nextcloud on your new server. Congratulations! :)</p>
- <p>We have set everything up for you and the only thing you have to do now is to login. You can find login details in the middle of this page.</p>
+ <p>We have prepared everything for you, and the only thing you have to do now is to login. You can find login details further down in this page.</p>
<p>Don't hesitate to ask if you have any questions. You can ask for help in our community <a href="https://help.nextcloud.com/c/support/appliances-docker-snappy-vm" target="_blank">support</a> channels, or <a href="https://shop.hanssonit.se/product/premium-support-per-30-minutes/" target="_blank">buy hands on support</a> from T&M Hansson IT AB. You can also check the <a href="https://docs.hanssonit.se/s/W6fMouPiqQz3_Mog/virtual-machines-vm/d/W7Du9uPiqQz3_Mr1/nextcloud-vm-machine-configuration" target="_blank">documentation</a>.</p>
</div>
@@ -128,7 +128,7 @@
<li><a href="https://<?=$_SERVER['SERVER_NAME'];?>:9443">https://<?=$_SERVER['SERVER_NAME'];?>:9443</a> (HTTPS)</li>
</ul>
</h3>
- <p>Note: Please accept the warning in the browser if you connect via HTTPS.</p>
+ <p>Note: Please accept the warning in the browser if you have a self-signed certificate.<br>
<h3>
<a href="https://docs.hanssonit.se/s/W6fMouPiqQz3_Mog/virtual-machines-vm/d/W6fMquPiqQz3_Moi/nextcloud-vm-first-setup-instructions?currentPageId=W6ypBePiqQz3_Mp0" target="_blank">Login details</a>
</h3>
diff --git a/static/setup_secure_permissions_nextcloud.sh b/static/setup_secure_permissions_nextcloud.sh
index eb00815f..7bff1f16 100644
--- a/static/setup_secure_permissions_nextcloud.sh
+++ b/static/setup_secure_permissions_nextcloud.sh
@@ -78,7 +78,7 @@ then
# Always chown root dir
chown "${htuser}":"${htgroup}" "${NCDATA}"/
# Check subdirs as well
- if find "${NCDATA}" -mindepth 1 -type d -exec stat --printf='%U:%G\n' {} \; | grep -v "${htuser}:${htgroup}"
+ if find "${NCDATA}" -maxdepth 4 -type d -exec stat --printf='%U:%G\n' {} \; | grep -v "${htuser}:${htgroup}"
then
chown -R "${htuser}":"${htgroup}" "${NCDATA}"/
fi