Skip to content

Commit bdd29a8

Browse files
authored
Merge pull request #7149 from nextcloud/enh/noid/make-error-more-verbose
domain-validation: make not-reachable error even more verbose
2 parents da49175 + 84f5e6a commit bdd29a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php/src/Data/ConfigurationManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ public function SetDomain(string $domain, bool $skipDomainValidation) : void {
351351
if ($connection) {
352352
fclose($connection);
353353
} else {
354-
throw new InvalidSettingConfigurationException("The domain is not reachable on Port 443 from within this container. Have you opened port 443/tcp in your router/firewall? If yes is the problem most likely that the router or firewall forbids local access to your domain. You can work around that by setting up a local DNS-server.");
354+
throw new InvalidSettingConfigurationException("The domain is not reachable on Port 443 from within this container. Have you opened port 443/tcp in your router/firewall? If yes is the problem most likely that the router or firewall forbids local access to your domain. Or in other words: NAT loopback (Hairpinning) does not seem to work in your network. You can work around that by setting up a local DNS server and utilizing Split-Brain-DNS and configuring the daemon.json file of your docker daemon to use the local DNS server.");
355355
}
356356

357357
// Get Instance ID

0 commit comments

Comments
 (0)