mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 03:02:01 -04:00
fix(settings): Disable SSL cert check for JavaScript modules SetupCheck
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
This commit is contained in:
parent
9345af7af7
commit
3df77839b7
1 changed files with 3 additions and 0 deletions
|
|
@ -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,
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue