How to use HTTPS?

How to set the path to a self-signed SSL certificate?
In the CurlHttpManager.cpp is such code:

// set certificate verification (disable to allow self-signed certificates)
	if (CurlRequestOptions.CertBundlePath == nullptr)
	{
		CurlRequestOptions.bVerifyPeer = false;
	}
	else
	{
		bool bVerifyPeer = true;
		if (GConfig->GetBool(TEXT("/Script/Engine.NetworkSettings"), TEXT("n.VerifyPeer"), bVerifyPeer, GEngineIni))
		{
			CurlRequestOptions.bVerifyPeer = bVerifyPeer;
		}
	}

How to set the CurlRequestOptions.CertBundlePath??