aboutsummaryrefslogtreecommitdiffstats
path: root/config/piwik.yml.erb
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2014-12-07 22:36:37 +0100
committerHarald Eilertsen <haraldei@anduin.net>2014-12-07 22:36:37 +0100
commit94c8330dd73f872e844e91ffe6e5a45c70d07c8f (patch)
treed519d02b164f6bb2247a58a642e735cd1f7baf52 /config/piwik.yml.erb
parentd01374d7221e11fc9d35f6f6100db08b5f3032c1 (diff)
downloadhmnoweb-94c8330dd73f872e844e91ffe6e5a45c70d07c8f.tar.gz
hmnoweb-94c8330dd73f872e844e91ffe6e5a45c70d07c8f.tar.bz2
hmnoweb-94c8330dd73f872e844e91ffe6e5a45c70d07c8f.zip
Add capistrano task and config for deploying piwik.
Diffstat (limited to 'config/piwik.yml.erb')
-rw-r--r--config/piwik.yml.erb33
1 files changed, 33 insertions, 0 deletions
diff --git a/config/piwik.yml.erb b/config/piwik.yml.erb
new file mode 100644
index 0000000..045ca08
--- /dev/null
+++ b/config/piwik.yml.erb
@@ -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: <%= 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