]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix(SetupChecks): Add hint about dns/firewall if `mjs` check can't run 44628/head
authorJosh <josh.t.richards@gmail.com>
Tue, 2 Apr 2024 13:46:58 +0000 (09:46 -0400)
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>
Tue, 2 Apr 2024 16:53:30 +0000 (16:53 +0000)
Signed-off-by: Josh <josh.t.richards@gmail.com>
apps/settings/lib/SetupChecks/JavaScriptModules.php

index 81f580a37bc9824cb196ae477d452d06e7077325..6aff7dcfaaafd8e6793d3d174a9a66962bbfb34e 100644 (file)
@@ -68,7 +68,7 @@ class JavaScriptModules implements ISetupCheck {
                }
 
                if ($noResponse) {
-                       return SetupResult::warning($this->l10n->t('Could not check for JavaScript support. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type.') . "\n" . $this->serverConfigHelp());
+                       return SetupResult::warning($this->l10n->t('Could not check for JavaScript support via any of your `trusted_domains` nor `overwrite.cli.url`. This may be the result of a server-side DNS mismatch or outbound firewall rule. Please check manually if your webserver serves `.mjs` files using the JavaScript MIME type.') . "\n" . $this->serverConfigHelp());
                }
                return SetupResult::error($this->l10n->t('Your webserver does not serve `.mjs` files using the JavaScript MIME type. This will break some apps by preventing browsers from executing the JavaScript files. You should configure your webserver to serve `.mjs` files with either the `text/javascript` or `application/javascript` MIME type.'));