mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-31 09:21:46 +08:00 
			
		
		
		
	Fix allowInsecure
This commit is contained in:
		| @@ -46,9 +46,9 @@ class QuantumultX | |||||||
|             if ($server['tlsSettings']) { |             if ($server['tlsSettings']) { | ||||||
|                 $tlsSettings = json_decode($server['tlsSettings'], true); |                 $tlsSettings = json_decode($server['tlsSettings'], true); | ||||||
|                 if (isset($tlsSettings['allowInsecure']) && !empty($tlsSettings['allowInsecure'])) |                 if (isset($tlsSettings['allowInsecure']) && !empty($tlsSettings['allowInsecure'])) | ||||||
|                     array_push($config, 'tls-verification=' . $tlsSettings['allowInsecure'] ? 'false' : 'true'); |                     array_push($config, 'tls-verification=' . ($tlsSettings['allowInsecure'] ? 'false' : 'true')); | ||||||
|                 if (isset($tlsSettings['serverName']) && !empty($tlsSettings['serverName'])) |                 if (isset($tlsSettings['serverName']) && !empty($tlsSettings['serverName'])) | ||||||
|                     array_push($config, "sni={$tlsSettings['serverName']}"); |                     array_push($config, "tls-host={$tlsSettings['serverName']}"); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|         if ($server['network'] === 'ws') { |         if ($server['network'] === 'ws') { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user