-
Notifications
You must be signed in to change notification settings - Fork 37
/
config_example.py
37 lines (31 loc) · 974 Bytes
/
config_example.py
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
debug = True
secret_key = '' # import os; os.urandom(24)
public = False
epoched = False
epoch_days = 45
sentry_dsn = None # change if you're using sentry exception handler
# database settings
db_host = 'localhost'
db_username = 'coveryourtracks'
db_password = 'changeme'
db_database = 'coveryourtracks'
db_port = 3306
# file for key material to use with hmac'ing ip addresses. 16 bytes
keyfile = '/path/to/some/keyfile'
# a password which authorizes various administrative tasks
admin_password = 'changeme'
# if your site wishes to use Matomo for analytics
use_matomo = False
matomo_url = 'anon-stats.eff.org'
matomo_site_id = '1111111'
# the domains for first-party trackers. order matters, only 3
first_party_trackers = [
'coveryourtracks.eff.org',
'firstpartysimulator.net',
'firstpartysimulator.org'
]
third_party_trackers = {
'ad_server': 'trackersimulator.org',
'tracker_server': 'eviltracker.net',
'dnt_server': 'do-not-tracker.org'
}