1<?php 2/** 3 * Configuration settings for the Nu Matomo Plugin 4 * 5 * @author Sascha Leib <ad@hominem.info> 6 */ 7 8/* Server address (e.g. "/analytics", or "https://analytics.example.com/") */ 9$conf['server'] = 'https://analytics.example.com/'; 10 11/* Site ID */ 12$conf['siteid'] = '1'; 13 14/* Instance name */ 15$conf['instance'] = 'matomo'; 16 17/* User flags */ 18$conf['exclude'] = 'admins'; 19 20/* Feature flags */ 21$conf['feature-flags'] = 'requireConsent,requireCookieConsent,enableLinkTracking'; 22 23/* User flags */ 24$conf['exclude'] = 'admins'; 25 26/* Honour the DoNotTrack header */ 27$conf['donottrack'] = 1; 28