↧
Answer by Niti for How can I use curl with a SSL URL to get a 200 OK?
Pre-requisites:- Tested on SLES11sp4 Download openssl-1.1.1.tar.gz (https://www.openssl.org/source/openssl-1.1.1.tar.gz) Download curl-7.61.1.tar.bz2(https://curl.haxx.se/download/curl-7.61.1.tar.bz2)...
View ArticleAnswer by Sibster for How can I use curl with a SSL URL to get a 200 OK?
You can export the cert from your browser and use it with cURL. From the man page : -E, --cert [certificate][:password] (SSL) Tells curl to use the specified client certificate file when getting a file...
View ArticleHow can I use curl with a SSL URL to get a 200 OK?
I'm trying to use curl to get the HTTP status of a GET request: curl --insecure --silent --show-error --connect-timeout 1 -I https://host:8443/health Note: I'm using the --insecure flag in this...
View Article