Skip to content

Instantly share code, notes, and snippets.

@wdzajicek
Created November 6, 2018 20:49
Show Gist options
  • Save wdzajicek/a0c6531b40c9a6524db71855e6a44ee5 to your computer and use it in GitHub Desktop.
Save wdzajicek/a0c6531b40c9a6524db71855e6a44ee5 to your computer and use it in GitHub Desktop.
Prevent Caching in IIS Servers!
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<clientCache cacheControlMode="DisableCache" />
</staticContent>
</system.webServer>
</configuration>
@wdzajicek
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment