Is there a way to persuade sbt/javax.net to ignore the SSL certificate?
I'm behind a firewall that rewrites certificates, and get the following error:
> submit asd@sdf xyz
[info] Connecting to coursera. Obtaining challenge...
[error] Connection failed
[error] javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated
Any advice on how I could work around this?
Something like the git GIT_SSL_NO_VERIFY
environment variable, or the wget --no-check-certificate
flag would be the most straightforward.
Thanks.
Three things that are usually the cause for SSL issues:
First, SSL has paid companies doing certificate authentication. When I set up my personal computer, I could get a CA to validate my ssl key, but it's a waste of my money just for internal resources.
Also, SSL certs are tied to domains. So, websites have to be aware of DNS routing tricks and return the right cert. Sometimes this could mean multiple SSL certs for one site, or misconfigured sites.
Finally, when an SSL cert expires you have to renew, and this seems to be a big source of errors as well.
--
You received this message because you are subscribed to the Google Groups "simple-build-tool" group.
To view this discussion on the web visit https://groups.google.com/d/msg/simple-build-tool/-/s7iTzZQWNgMJ.
Any advice on how I could work around this?
Something like the git
GIT_SSL_NO_VERIFY
environment variable, or thewget --no-check-certificate
flag would be the most straightforward.