-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.py
More file actions
56 lines (48 loc) · 2.25 KB
/
Copy pathconfig.example.py
File metadata and controls
56 lines (48 loc) · 2.25 KB
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
#############################################################################
# weBIGeo Tiles
# Copyright (C) 2026 Gerald Kimmersdorfer
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#############################################################################
# Copy this file to config.py and adjust the values for your deployment.
# Path to the SQLite database file.
db_path = "data/tiles-server.db"
# Host and port the server listens on.
# Use "0.0.0.0" to accept connections from any network interface.
host = "127.0.0.1"
port = 8001
# Logging level. (e.g. DEBUG, INFO, WARNING, ERROR, CRITICAL)
log_level = "DEBUG"
# Log file path. Set to empty string to disable file logging.
log_file = "data/latest.log"
# Log file rotation: maximum size per file in bytes and number of backup files to keep.
log_file_max_bytes = 5 * 1024 * 1024 # 5 MiB
log_file_backup_count = 3
# Per-logger level overrides. Use this to silence noisy third-party libraries
log_level_overrides = {
"waitress": "ERROR",
"filelock": "ERROR",
"urllib3": "ERROR",
}
# Email notifications. Leave smtp_host or notify_email empty/None to disable.
# Gmail: smtp_host="smtp.gmail.com", smtp_password=<app password from myaccount.google.com/apppasswords>
notify_email = "" # recipient address
smtp_host = "" # e.g. "smtp.gmail.com"
smtp_port = 587
smtp_user = "" # sender login (usually same as notify_email)
smtp_password = ""
# ntfy.sh push notifications. Set ntfy_topic to enable (pick an unguessable name).
# Install the ntfy app and subscribe to the same topic to receive push notifications.
ntfy_topic = "" # e.g. "webigeo-tiles-abc123"
ntfy_server = "https://ntfy.sh" # override for self-hosted instances