Skip to content

Instantly share code, notes, and snippets.

@a2ron
Forked from jirutka/analytics.conf
Last active August 7, 2017 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a2ron/fc847f3d60386a909f51db13322ec14e to your computer and use it in GitHub Desktop.
Save a2ron/fc847f3d60386a909f51db13322ec14e to your computer and use it in GitHub Desktop.
Add Google Analytics tracking code to HTML via nginx
# Add Google Analytics tracking code to HTML response
#
# Usage:
# set $tracking_id 'UA-********-*';
# include incl/analytics.conf;
#
# It needs nginx compiled with option --with-http_sub_module.
# Uses optimized GA code from: http://mathiasbynens.be/notes/async-analytics-snippet
#
sub_filter </head> "<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');ga('create', '$tracking_id', 'auto');ga('send', 'pageview');</script></head>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment