diff --git a/php/src/Data/ConfigurationManager.php b/php/src/Data/ConfigurationManager.php index 7c7039af..e2291a76 100644 --- a/php/src/Data/ConfigurationManager.php +++ b/php/src/Data/ConfigurationManager.php @@ -900,7 +900,7 @@ class ConfigurationManager } public function shouldDomainValidationBeSkipped() : bool { - if (getenv('SKIP_DOMAIN_VALIDATION') !== false) { + if (getenv('SKIP_DOMAIN_VALIDATION') === 'true') { return true; } return false; diff --git a/php/templates/containers.twig b/php/templates/containers.twig index 1bbfc001..92cfbde8 100644 --- a/php/templates/containers.twig +++ b/php/templates/containers.twig @@ -106,7 +106,7 @@

Please note: The domain validation is disabled so any domain will be accepted here! Make sure you do not make a typo here as you will not be able to change it afterwards!

{% endif %}
- + @@ -195,9 +195,9 @@ if stored remotely; and the encryption password of the backup archive below:

-
+

-
+
diff --git a/php/templates/setup.twig b/php/templates/setup.twig index ac8063a2..f1d4d1dc 100644 --- a/php/templates/setup.twig +++ b/php/templates/setup.twig @@ -10,7 +10,7 @@

All-in-One setup

The official Nextcloud installation method. Nextcloud All-in-One provides easy deployment and maintenance with most features included in this one Nextcloud instance.

⚠️ Please note down the passphrase to access the AIO interface and don't lose it!

- Passphrase
{{ password }}
+ Passphrase
{{ password }}
Open Nextcloud AIO login ↗ {% endblock %}