Skip to content

Instantly share code, notes, and snippets.

@stephenasamoah
Forked from sergejmueller/index.html
Created March 7, 2017 15:37
Show Gist options
  • Save stephenasamoah/4a20d0fd6d3721a24e7aec129106419c to your computer and use it in GitHub Desktop.
Save stephenasamoah/4a20d0fd6d3721a24e7aec129106419c to your computer and use it in GitHub Desktop.
Embedded Google Analytics: Fix “Leverage Browser Caching” Warning on Nginx
<html>
<!-- ... -->
<!-- Embed analytics.js as local file -->
<script src="/analytics.js"></script>
</html>
server {
### ...
location = /analytics.js {
# Proxy to google-analytics.com
proxy_pass https://www.google-analytics.com;
# Custom expires time
expires 1y;
}
### ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment