Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

51 lines
2.2 KiB

  1. {#
  2. SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  3. SPDX-License-Identifier: AGPL-3.0-or-later
  4. #}
  5. # Go-NEB Configuration File
  6. #
  7. # This file provides an alternative way to configure Go-NEB which does not involve HTTP APIs.
  8. #
  9. # This file can be supplied to go-neb by the environment variable `CONFIG_FILE=config.yaml`.
  10. # It will force Go-NEB to operate in "config" mode. This means:
  11. # - Go-NEB will ONLY use the data contained inside this file.
  12. # - All of Go-NEB's /admin HTTP listeners will be disabled. You will be unable to add new services at runtime.
  13. # - The environment variable `DATABASE_URL` will be ignored and an in-memory database will be used instead.
  14. #
  15. # This file is broken down into 4 sections which matches the following HTTP APIs:
  16. # - /configureClient
  17. # - /configureAuthRealm
  18. # - /configureService
  19. # - /requestAuthSession (redirects not supported)
  20. # The list of clients which Go-NEB is aware of.
  21. # Delete or modify this list as appropriate.
  22. # See the docs for /configureClient for the full list of options:
  23. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ClientConfig
  24. clients:
  25. {{ matrix_bot_go_neb_clients|to_json }}
  26. # The list of realms which Go-NEB is aware of.
  27. # Delete or modify this list as appropriate.
  28. # See the docs for /configureAuthRealm for the full list of options:
  29. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ConfigureAuthRealmRequest
  30. realms:
  31. {{ matrix_bot_go_neb_realms|to_json }}
  32. # The list of *authenticated* sessions which Go-NEB is aware of.
  33. # Delete or modify this list as appropriate.
  34. # The full list of options are shown below: there is no single HTTP endpoint
  35. # which maps to this section.
  36. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#Session
  37. sessions:
  38. {{ matrix_bot_go_neb_sessions|to_json }}
  39. # The list of services which Go-NEB is aware of.
  40. # Delete or modify this list as appropriate.
  41. # See the docs for /configureService for the full list of options:
  42. # https://matrix-org.github.io/go-neb/pkg/github.com/matrix-org/go-neb/api/index.html#ConfigureServiceRequest
  43. services:
  44. {{ matrix_bot_go_neb_services|to_json }}