Matrix Docker Ansible eploy
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

51 linhas
1.9 KiB

  1. # The string to prefix bot commands with
  2. command_prefix: "!"
  3. # Options for connecting to the bot's Matrix account
  4. matrix:
  5. # The Matrix User ID of the bot account
  6. user_id: {{ matrix_bot_matrix_reminder_bot_matrix_user_id|to_json }}
  7. # Matrix account password
  8. user_password: {{ matrix_bot_matrix_reminder_bot_matrix_user_password|to_json }}
  9. # The public URL at which the homeserver's Client-Server API can be accessed
  10. homeserver_url: {{ matrix_bot_matrix_reminder_bot_matrix_homeserver_url }}
  11. # The device ID that is a **non pre-existing** device
  12. # If this device ID already exists, messages will be dropped silently in
  13. # encrypted rooms
  14. device_id: REMINDER
  15. # What to name the logged in device
  16. device_name: Reminder Bot
  17. storage:
  18. # The database connection string
  19. # For SQLite3, this would look like:
  20. # database: "sqlite://bot.db"
  21. # For Postgres, this would look like:
  22. # database: "postgres://username:password@localhost/dbname?sslmode=disable"
  23. #database: "postgres://matrix-reminder-bot:remindme@localhost/matrix-reminder-bot?sslmode=disable"
  24. database: {{ matrix_bot_matrix_reminder_bot_storage_database|to_json }}
  25. # The path to a directory for internal bot storage
  26. # containing encryption keys, sync tokens, etc.
  27. store_path: "/data/store"
  28. reminders:
  29. # Uncomment to set a default timezone that will be used when creating reminders.
  30. # If not set, UTC will be used
  31. timezone: {{ matrix_bot_matrix_reminder_bot_reminders_timezone }}
  32. # Logging setup
  33. logging:
  34. # Logging level
  35. # Allowed levels are 'INFO', 'WARNING', 'ERROR', 'DEBUG' where DEBUG is most verbose
  36. level: INFO
  37. # Configure logging to a file
  38. file_logging:
  39. # Whether logging to a file is enabled
  40. enabled: false
  41. # The path to the file to log to. May be relative or absolute
  42. filepath: /data/bot.log
  43. # Configure logging to the console (stdout/stderr)
  44. console_logging:
  45. # Whether console logging is enabled
  46. enabled: true