Merge pull request #538 from hennevogel/master

Implements piwik tracking
This commit is contained in:
Henne Vogelsang 2014-11-12 12:04:36 +01:00
commit 5b78666eb8
5 changed files with 73 additions and 32 deletions

33
config/piwik.yml.example Normal file
View file

@ -0,0 +1,33 @@
# Configuration:
#
# disabled
# false if tracking tag should be shown
# use_async
# Set to true if you want to use asynchronous tracking
# url
# The url of your piwik instance (e.g. localhost/piwik/
# id_site
# The id of your website inside Piwik
#
production:
piwik:
id_site: 1
url: localhost
use_async: false
disabled: false
development:
piwik:
id_site: 1
url: localhost
disabled: true
use_async: false
hostname: localhost
test:
piwik:
id_site: 1
url: localhost
disabled: true
use_async: false
hostname: localhost