mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
YAML
database: sqlite:///maubot.db
|
|
|
|
# If multiple directories have a plugin with the same name, the first directory is used.
|
|
plugin_directories:
|
|
- ./plugins
|
|
|
|
server:
|
|
listen: 0.0.0.0:29316
|
|
base_path: /_matrix/maubot
|
|
|
|
admins:
|
|
- "@admin:example.com"
|
|
|
|
# Python logging configuration.
|
|
#
|
|
# See section 16.7.2 of the Python documentation for more info:
|
|
# https://docs.python.org/3.6/library/logging.config.html#configuration-dictionary-schema
|
|
logging:
|
|
version: 1
|
|
formatters:
|
|
precise:
|
|
format: "[%(asctime)s] [%(levelname)s@%(name)s] %(message)s"
|
|
handlers:
|
|
file:
|
|
class: logging.handlers.RotatingFileHandler
|
|
formatter: precise
|
|
filename: ./logs/maubot.log
|
|
maxBytes: 10485760
|
|
backupCount: 10
|
|
console:
|
|
class: logging.StreamHandler
|
|
formatter: precise
|
|
loggers:
|
|
maubot:
|
|
level: DEBUG
|
|
mautrix:
|
|
level: DEBUG
|
|
aiohttp:
|
|
level: INFO
|
|
root:
|
|
level: DEBUG
|
|
handlers: [file, console]
|