what does “* Connection #0 to host example.com left intact” mean?
Adding a header “Connection: close” to your CURL command should solve the problem: curl -v -H “Connection: close” https://example.com Explanation can be found in this article: Why is the connection left intact ? The connection is left intact, because the server allowed it to stay open and CURL no need to close it after you … Read more