summarylogtreecommitdiffstats
path: root/local_settings.py
blob: 5d4168e4c9fe68ffb55d43c794e85a56c5718ccc (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#Display name of the healthchecks instance.
#SITE_NAME="Mychecks"

#Base URL of the healthchecks instance.
#SITE_ROOT="http://localhost:8000"

#Logo URL
#SITE_LOGO_URL=""

#Ping settings.
#PING_EMAIL_DOMAIN="localhost"
#PING_ENDPOINT="<SITE_ROOT/ping/>"

#The label for the "Overall Status" status badge.  Defaults to SITE_NAME.
#MASTER_BADGE_LABEL=<SITE_NAME>

#The host/domains that this site can serve. You can specify multiple domain names by separating them with commas.
#ALLOWED_HOSTS=*

#Allow visitors to create new accounts.  If False, the administrator may still invite selected users.
#REGISTRATION_OPEN=True

#Request header for external authentication.
#REMOTE_USER_HEADER=

#Relying Party Identifier.  Set to your site's domain.  Required by WebAuthn 2fa.
#RP_ID=

#Django cryptographic setting.
#SECRET_KEY=

#Upper limit (in bytes) of logged ping request bodies.
#PING_BODY_LIMIT=10000

#Turn billing features on/off.
#USE_PAYMENTS=False

#Email settings.
#DEFAULT_FROM_EMAIL="noreply@my-monitoring-project.com"
#SERVER_EMAIL="noreply@my-monitoring-admin.com"
#SUPPORT_EMAIL = "pleasereply@my-monitoring-support.com"
#EMAIL_HOST="your-smtp-server-here.com"
#EMAIL_PORT=587
#EMAIL_HOST_USER="username"
#EMAIL_HOST_PASSWORD="password"
#EMAIL_USE_TLS=True

#Send a verification email when adding an email integration.
#EMAIL_USE_VERIFICATION=True

# Uncomment to use Postgres:
# DATABASES = {
#     'default': {
#         'ENGINE': 'django.db.backends.postgresql',
#         'HOST': 'your-database-host-here',
#         'PORT': 'your-database-port-here',
#         'NAME': 'your-database-name-here',
#         'USER': 'your-database-user-here',
#         'PASSWORD': 'your-database-password-here',
#         'TEST': {'CHARSET': 'UTF8'}
#     }
# }

# Uncomment to use MySQL:
# DATABASES = {
#     'default': {
#         'ENGINE': 'django.db.backends.mysql',
#         'HOST': 'your-database-host-here',
#         'PORT': 'your-database-port-here',
#         'NAME': 'your-database-name-here',
#         'USER': 'your-database-user-here',
#         'PASSWORD': 'your-database-password-here',
#         'TEST': {'CHARSET': 'UTF8'}
#     }
# }

#Set this to hc (or your database name, if something different) for PostgreSQL or MySQL.
#DB_NAME="/usr/share/webapps/healthchecks/hc.sqlite"

#Postgres DB settings
#DB_SSLMODE="prefer"
#DB_TARGET_SESSION_ATTRS="read-write"

#A boolean that turns on/off debug mode.
DEBUG=False

#A boolean that turns on/off the Apprise integration.
#APPRISE_ENABLED=False

#Discord integration.
#DISCORD_CLIENT_ID=
#DISCORD_CLIENT_SECRET=

#No clue what these are.
#LINENOTIFY_CLIENT_ID=
#LINENOTIFY_CLIENT_SECRET=

#Matrix integration.
#MATRIX_ACCESS_TOKEN=
#MATRIX_HOMESERVER=
#MATRIX_USER_ID=

#Mattermost integration.
#MATTERMOST_ENABLED=True

#Microsoft Teams integration.
#MSTEAMS_ENABLED=True

#Opsgenie integration.
#OPSGENIE_ENABLED=True

#PagerTree integratino.
#PAGERTREE_ENABLED=True

#PagerDuty integration.
#PD_ENABLED=True
#PD_VENDOR_KEY=

#Prometheus integration.
#PROMETHEUS_ENABLED=True

#Pushbullet integration.
#PUSHBULLET_CLIENT_ID=
#PUSHBULLET_CLIENT_SECRET=

#Pushover integration.
#PUSHOVER_API_TOKEN=
#PUSHOVER_EMERGENCY_EXPIRATION=86400
#PUSHOVER_EMERGENCY_RETRY_DELAY=300
#PUSHOVER_SUBSCRIPTION_URL=

#Shell commands integration.
#SHELL_ENABLED=False

#Signal integration.
#SIGNAL_CLI_ENABLED=False

#Slack integration.
#SLACK_CLIENT_ID=
#SLACK_CLIENT_SECRET=
#SLACK_ENABLED=True

#Spike.sh integration.
#SPIKE_ENABLED=True

#Telegram integration.
#TELEGRAM_BOT_NAME="ExampleBot"
#TELEGRAM_TOKEN=

#Trello integration.
#TRELLO_APP_KEY=

#Twilio integration.
#TWILIO_ACCOUNT=
#TWILIO_AUTH=
#TWILIO_FROM=
#TWILIO_USE_WHATSAPP=False

#VictorOps integration.
#VICTOROPS_ENABLED=True

#Webhooks integration.
#WEBHOOKS_ENABLED=True

#Zulip integration.
#ZULIP_ENABLED=True