Curl: Difference between revisions

From DWIKI
(Created page with "=HOWTO= ==Check supported TLS version== curl -I -v --tlsv1.2 --tls-max 1.2 https://www.example.com/")
 
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
==Check supported TLS version==
==Check supported TLS version==
  curl -I -v --tlsv1.2 --tls-max 1.2 https://www.example.com/
  curl -I -v --tlsv1.2 --tls-max 1.2 https://www.example.com/
==Specify hostname for https request==
https://stackoverflow.com/questions/50279275/curl-how-to-specify-target-hostname-for-https-request
curl --resolve example.com:443:192.0.2.1 https://example.com

Latest revision as of 11:05, 23 August 2023

HOWTO

Check supported TLS version

curl -I -v --tlsv1.2 --tls-max 1.2 https://www.example.com/


Specify hostname for https request

https://stackoverflow.com/questions/50279275/curl-how-to-specify-target-hostname-for-https-request

curl --resolve example.com:443:192.0.2.1 https://example.com