> +// Example only! Choose the appropriate SSLContext settings for your 
> scenario!
> +SSLContext sc = SSLContext.getInstance("TLS");
> +sc.init(null, null, null);
> +sc.getDefaultSSLParameters().setProtocols(new String[] { "TLSv1", "TLSv1.1", 
> "TLSv1.2" });
> +HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
> +...
> +// use jclouds to make HTTPS connections to your cloud providers
> +```
> +
> +#### When does jclouds configure SSL connections itself?
> +
> +jclouds only changes the SSL connection settings (rather than inheriting 
> them from the JVM) in two cases:
> +
> +1) If you are setting `jclouds.trust-all-certs=true`, i.e. are configuring 
> jclouds to trust **all** certificates
> +
> +If you are concerned about secure connections, it is almost never a good 
> idea to use this option in the first place. If you absolutely need to trust 
> all certificates _and_ disable SSLv3, you can:

Take out this paragraph and replace with something I mentioned earlier. Link 
edge cases to Jira.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-site/pull/138/files#r19282517

Reply via email to