forked from nebev/piwik-cli-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-example.json
45 lines (45 loc) · 1.26 KB
/
install-example.json
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
34
35
36
37
38
39
40
41
42
43
44
45
{
"document_root": "/var/www/html",
"login": "yourlogin",
"password": "yourpassword",
"email": "[email protected]",
"site_name": "Sydney Morning Herald",
"site_url": "http://www.smh.com.au",
"base_domain": "domain.where.piwik.is.installed",
"session_save_handler": "dbtable",
"geo_provider": "geoip_pecl",
"database": {
"host": "db",
"adapter": "Pdo\\Mysql",
"username": "piwik",
"password": "yoursuperstrongpiwikdatabasepasswordhere",
"dbname": "piwik",
"tables_prefix": "piwik_"
},
"branding": {
"header_url": "https://cdnjs.cloudflare.com/ajax/libs/emojione/2.2.6/assets/png/261d-1f3fb.png"
},
"privacy": {
"anonymize_ip": false,
"honor_do_not_track": false
},
"plugins": [
"YourPluginWhichYouveAlreadyPutInThePLUGINSDirectory"
],
"deactivate_plugins": [
"ExamplePlugin"
],
"extras": {
"General": {
"enable_framed_pages": 1,
"enable_framed_settings": 1
},
"Tracker": {
"trust_visitors_cookies": 1,
"use_third_party_id_cookie": 1
}
},
"options": {
"Plugin_XXX_Settings": "Copy From Your Options Of A Manually Setup Plugin"
}
}