Last active
December 14, 2021 09:50
-
-
Save sergejmueller/b83df992cce9b25442f523bb0f5123ee to your computer and use it in GitHub Desktop.
Embedded Google Analytics: Fix “Leverage Browser Caching” Warning on Nginx
This file contains 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
<html> | |
<!-- ... --> | |
<!-- Embed analytics.js as local file --> | |
<script src="/analytics.js"></script> | |
</html> |
This file contains 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
server { | |
### ... | |
location = /analytics.js { | |
# Proxy to google-analytics.com | |
proxy_pass https://www.google-analytics.com; | |
# Custom expires time | |
expires 1y; | |
} | |
### ... | |
} |
Awesome! Just had the same idea and found your gist! 👍
Doesnt work anymore ?
I get this google error page
- That’s an error.
The requested URL /analytics.js was not found on this server. That’s all we know.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is some excellent thinking outside the box :)
Thanks for sharing, I used it to fix a JSON call over http -> https (local) to prevent mixed up http/https from happening (including microcaching to speed up things). You might even use microcaching for tye analytics bit as well :)