Created
March 7, 2016 01:02
-
-
Save jeremysells/c90782326a11a3dcf794 to your computer and use it in GitHub Desktop.
vhost disable caching.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vhost disable asset cacheing | |
<Directory .../public_html> | |
#disable caching | |
Header unset ETag | |
Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate" | |
Header set Pragma "no-cache" | |
Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT" | |
</Directory> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment