mirror of
https://github.com/nextcloud/server.git
synced 2026-02-22 17:31:10 -05:00
Merge pull request #42999 from nextcloud/fix/mjs-setup-check-local
This commit is contained in:
commit
4dc224fa2c
1 changed files with 7 additions and 1 deletions
|
|
@ -64,12 +64,18 @@ class JavaScriptModules implements ISetupCheck {
|
|||
foreach ($testURLs as $testURL) {
|
||||
try {
|
||||
$client = $this->clientService->newClient();
|
||||
$response = $client->head($testURL, ['connect_timeout' => 10]);
|
||||
$response = $client->head($testURL, [
|
||||
'connect_timeout' => 10,
|
||||
'nextcloud' => [
|
||||
'allow_local_address' => true,
|
||||
],
|
||||
]);
|
||||
if (preg_match('/(text|application)\/javascript/i', $response->getHeader('Content-Type'))) {
|
||||
return SetupResult::success();
|
||||
}
|
||||
} catch (\Throwable $e) {
|
||||
$this->logger->debug('Can not connect to local server for checking JavaScript modules support', ['exception' => $e, 'url' => $testURL]);
|
||||
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.'));
|
||||
}
|
||||
}
|
||||
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.'));
|
||||
|
|
|
|||
Loading…
Reference in a new issue