fix(settings): Disable SSL cert check for JavaScript modules SetupCheck

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
Ferdinand Thiessen 2024-02-13 21:41:53 +01:00 committed by backportbot[bot]
parent 9345af7af7
commit 3df77839b7

View file

@ -66,6 +66,9 @@ class JavaScriptModules implements ISetupCheck {
$client = $this->clientService->newClient();
$response = $client->head($testURL, [
'connect_timeout' => 10,
// Disable SSL certificate checks to allow self signed certs
'verify' => false,
// Allow to connect to local server
'nextcloud' => [
'allow_local_address' => true,
],