Matrix Docker Ansible eploy
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

45 rindas
2.1 KiB

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