Matrix Docker Ansible eploy
Não pode escolher mais do que 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.
 
 

82 linhas
3.4 KiB

  1. #jinja2: lstrip_blocks: True
  2. # The web settings for the service (API and UI).
  3. # It is best to have this run on localhost and use a reverse proxy to access Dimension.
  4. web:
  5. port: 8184
  6. address: '0.0.0.0'
  7. # Homeserver configuration
  8. homeserver:
  9. # The domain name of the homeserver. This is used in many places, such as with go-neb
  10. # setups, to identify the homeserver.
  11. name: "{{ matrix_domain }}"
  12. # The URL that Dimension, go-neb, and other services provisioned by Dimension should
  13. # use to access the homeserver with.
  14. clientServerUrl: "http://matrix-synapse:8008"
  15. # The URL that Dimension should use when trying to communicate with federated APIs on
  16. # the homeserver. If not supplied or left empty Dimension will try to resolve the address
  17. # through the normal federation process.
  18. federationUrl: "{{ matrix_dimension_homeserver_federationUrl }}"
  19. # The URL that Dimension will redirect media requests to for downloading media such as
  20. # stickers. If not supplied or left empty Dimension will use the clientServerUrl.
  21. mediaUrl: "https://{{ matrix_server_fqn_matrix }}"
  22. # The access token Dimension should use for miscellaneous access to the homeserver. This
  23. # should be for a user on the configured homeserver: any user will do, however it is
  24. # recommended to use a dedicated user (such as @dimension:t2bot.io). For information on
  25. # how to acquire an access token, visit https://t2bot.io/docs/access_tokens
  26. accessToken: "{{ matrix_dimension_access_token }}"
  27. # These users can modify the integrations this Dimension supports.
  28. # To access the admin interface, open Dimension in Element and click the settings icon.
  29. admins: {{ matrix_dimension_admins|to_json }}
  30. # IPs and CIDR ranges listed here will be blocked from being widgets.
  31. # Note: Widgets may still be embedded with restricted content, although not through Dimension directly.
  32. widgetBlacklist:
  33. - 10.0.0.0/8
  34. - 172.16.0.0/12
  35. - 192.168.0.0/16
  36. - 127.0.0.0/8
  37. # Where the database for Dimension is
  38. database:
  39. file: "dimension.db"
  40. # Display settings that apply to self-hosted go-neb instances
  41. goneb:
  42. # The avatars to set for each bot. Usually these don't need to be changed, however if your homeserver
  43. # is not able to reach t2bot.io then you should specify your own here. To not use an avatar for a bot,
  44. # make the bot's avatar an empty string.
  45. avatars:
  46. giphy: "mxc://t2bot.io/c5eaab3ef0133c1a61d3c849026deb27"
  47. imgur: "mxc://t2bot.io/6749eaf2b302bb2188ae931b2eeb1513"
  48. github: "mxc://t2bot.io/905b64b3cd8e2347f91a60c5eb0832e1"
  49. wikipedia: "mxc://t2bot.io/7edfb54e9ad9e13fec0df22636feedf1"
  50. travisci: "mxc://t2bot.io/7f4703126906fab8bb27df34a17707a8"
  51. rss: "mxc://t2bot.io/aace4fcbd045f30afc1b4e5f0928f2f3"
  52. google: "mxc://t2bot.io/636ad10742b66c4729bf89881a505142"
  53. guggy: "mxc://t2bot.io/e7ef0ed0ba651aaf907655704f9a7526"
  54. echo: "mxc://t2bot.io/3407ff2db96b4e954fcbf2c6c0415a13"
  55. circleci: "mxc://t2bot.io/cf7d875845a82a6b21f5f66de78f6bee"
  56. jira: "mxc://t2bot.io/f4a38ebcc4280ba5b950163ca3e7c329"
  57. # Settings for how Dimension is represented to the public
  58. dimension:
  59. # This is where Dimension is accessible from clients. Be sure to set this
  60. # to your own Dimension instance.
  61. publicUrl: "https://{{ matrix_server_fqn_dimension }}"
  62. # Settings for controlling how logging works
  63. logging:
  64. file: /dev/null
  65. console: true
  66. consoleLevel: verbose
  67. fileLevel: info
  68. rotate:
  69. size: 52428800 # bytes, default is 50mb
  70. count: 5