I'm trying to run some acceptance tests against a site that lives behind an akamai CND. To ensure the site is deployed / is running correctly I'd like to bypass akamai.
I've tried the following command to test headers:
curl -H "Pragma: akamai-x-cache-on, akamai-x-cache-remote-on, akamai-x-check-cacheable, akamai-x-get-cache-key, akamai-x-get-extracted-values, akamai-x-get-nonces, akamai-x-get-ssl-client-session-id, akamai-x-get-true-cache-key, akamai-x-serial-no" -IXGET http://www.blah.com/blah.css/
This gives loads of cache information, but does not bypass the cache entirely. For example, if a file is missing but available in the cache it will 200 if it hit's an akamai node with that file.
Does anyone have any experience of this that can help?