Skip to content

Commit

Permalink
Merge pull request #43587 from nextcloud/backport/43558/stable28
Browse files Browse the repository at this point in the history
[stable28] fix(settings): Disable SSL cert check for JavaScript modules SetupCheck
  • Loading branch information
susnux authored Feb 15, 2024
2 parents 0c1a0cd + 3df7783 commit e302283
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/settings/lib/SetupChecks/JavaScriptModules.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ public function run(): SetupResult {
$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,
],
Expand Down

0 comments on commit e302283

Please sign in to comment.