2014-11-12 10:45:44 +01:00
|
|
|
# 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
|
|
|
|
|
#
|
2018-09-18 22:09:01 +02:00
|
|
|
|
|
|
|
|
default: &default
|
|
|
|
|
id_site: <%= ENV['OSEM_PIWIK_ID'] %>
|
|
|
|
|
url: <%= ENV['OSEM_PIWIK_URL'] %>
|
2022-05-06 14:27:15 +02:00
|
|
|
use_async: <%= ENV.fetch('OSEM_PIWIK_ASYNC', false) %>
|
|
|
|
|
disabled: <%= ENV.fetch('OSEM_PIWIK_DISABLED', true) %>
|
|
|
|
|
hostname: <%= ENV.fetch('OSEM_PIWIK_HOSTNAME', 'localhost') %>
|
2018-09-18 22:09:01 +02:00
|
|
|
|
2014-11-12 10:45:44 +01:00
|
|
|
production:
|
|
|
|
|
piwik:
|
2018-09-18 22:09:01 +02:00
|
|
|
<<: *default
|
2014-11-12 10:45:44 +01:00
|
|
|
|
|
|
|
|
development:
|
|
|
|
|
piwik:
|
2018-09-18 22:09:01 +02:00
|
|
|
<<: *default
|
2014-11-12 10:45:44 +01:00
|
|
|
|
|
|
|
|
test:
|
|
|
|
|
piwik:
|
2018-09-18 22:09:01 +02:00
|
|
|
<<: *default
|