Skip to content

Instantly share code, notes, and snippets.

@hofmannsven
Forked from sergejmueller/index.html
Last active February 6, 2023 03:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hofmannsven/90388472e0d0129e1e492b4d478d090e to your computer and use it in GitHub Desktop.
Save hofmannsven/90388472e0d0129e1e492b4d478d090e to your computer and use it in GitHub Desktop.
Nginx proxy configuration for Google Analytics
server {
### ...
location = /analytics.js {
# Proxy to google-analytics.com
proxy_pass https://www.google-analytics.com;
# Custom expires time
expires 1y;
}
}
@hofmannsven
Copy link
Author

@mch0lic Good point!

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