Skip to content
This repository was archived by the owner on Nov 25, 2020. It is now read-only.

Commit c534660

Browse files
committed
Fix auto update via proxy
1 parent 2ca45e1 commit c534660

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

core/src/plugins/action.updater/class.AjaXplorerUpgrader.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ public function __construct($archiveURL, $hash, $method, $backupFiles = array())
9090
public static function configureProxy($proxyHost, $proxyUser, $proxyPass)
9191
{
9292
$proxy = array( 'http' => array( 'proxy' => 'tcp://'.$proxyHost, 'request_fulluri' => true ) );
93+
$proxy['ssl']['SNI_enabled'] = false;
9394
if (!empty($proxyUser) && !empty($proxyPass)) {
9495
$auth = base64_encode($proxyUser.":".$proxyPass);
9596
$proxy['http']['header'] = "Proxy-Authorization: Basic $auth";

0 commit comments

Comments
 (0)