change NoVerifyCertChain and NoVerifyCertHostname default to true, as stated on ini files

This commit is contained in:
UbitUmarov
2024-04-12 21:03:03 +01:00
parent 07d3d51c3b
commit 36f95e0167

View File

@@ -82,8 +82,8 @@ namespace OpenSim.Framework.Servers
m_osSecret = UUID.Random().ToString();
}
private static bool m_NoVerifyCertChain = false;
private static bool m_NoVerifyCertHostname = false;
private static bool m_NoVerifyCertChain = true;
private static bool m_NoVerifyCertHostname = true;
public static bool ValidateServerCertificate(
object sender,