Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(settings): Disable SSL cert check for JavaScript modules SetupCheck
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
  • Loading branch information
susnux authored and backportbot[bot] committed Feb 14, 2024
commit 3df77839b78a3b8ee7ccbd8cb0bed88fc6d94c7b
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