aboutsummaryrefslogtreecommitdiffstats
path: root/config/piwik.yml.erb
blob: 045ca08d16301845525680aef1778ec045cd7c0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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: <%= site_id %>
    url: <%= url %>
    use_async: false
    disabled: false

development:
  piwik:
    id_site: <%= site_id %>
    url: <%= url %>
    disabled: true
    use_async: false
    hostname: localhost

test:
  piwik:
    id_site: <%= site_id %>
    url: <%= url %>
    disabled: true
    use_async: false
    hostname: localhost