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 %}