cURL Archive

  • curl-logo-new

    cURL Tip: Check that the Apache Compression (gzip, deflate) is Working

    This is a quick method with using cURL to check that Apache Compression with mod_gzip and mod_deflate is working. Only the remote server headers are needed. Check that the Apache Compression is Working Get headers curl -I -H 'Accept-Encoding: gzip,deflate' http://www.if-not-true-then-false.com -I option which will...

    Full Story