Matrix Docker Ansible eploy
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

76 行
3.5 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 | to_json }}
  12. # The URL that Dimension, go-neb, and other services provisioned by Dimension should
  13. # use to access the homeserver with.
  14. clientServerUrl: {{ matrix_dimension_homeserver_clientServerUrl | to_json }}
  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 | to_json }}
  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: {{ matrix_dimension_homeserver_mediaUrl | to_json }}
  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 | to_json }}
  27. # These users can modify the integrations this Dimension supports.
  28. # To access the admin interface, open Dimension in Element Web 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. {% if matrix_dimension_database_engine == 'sqlite' %}
  40. file: {{ matrix_dimension_sqlite_database_path_in_container|to_json }}
  41. {% elif matrix_dimension_database_engine == 'postgres' %}
  42. uri: {{ matrix_dimension_database_connection_string|to_json }}
  43. {% endif %}
  44. # Display settings that apply to self-hosted go-neb instances
  45. goneb:
  46. # The avatars to set for each bot. Usually these don't need to be changed, however if your homeserver
  47. # is not able to reach t2bot.io then you should specify your own here. To not use an avatar for a bot,
  48. # make the bot's avatar an empty string.
  49. avatars:
  50. giphy: "mxc://t2bot.io/c5eaab3ef0133c1a61d3c849026deb27"
  51. imgur: "mxc://t2bot.io/6749eaf2b302bb2188ae931b2eeb1513"
  52. github: "mxc://t2bot.io/905b64b3cd8e2347f91a60c5eb0832e1"
  53. wikipedia: "mxc://t2bot.io/7edfb54e9ad9e13fec0df22636feedf1"
  54. travisci: "mxc://t2bot.io/7f4703126906fab8bb27df34a17707a8"
  55. rss: "mxc://t2bot.io/aace4fcbd045f30afc1b4e5f0928f2f3"
  56. google: "mxc://t2bot.io/636ad10742b66c4729bf89881a505142"
  57. guggy: "mxc://t2bot.io/e7ef0ed0ba651aaf907655704f9a7526"
  58. echo: "mxc://t2bot.io/3407ff2db96b4e954fcbf2c6c0415a13"
  59. circleci: "mxc://t2bot.io/cf7d875845a82a6b21f5f66de78f6bee"
  60. jira: "mxc://t2bot.io/f4a38ebcc4280ba5b950163ca3e7c329"
  61. # Settings for how Dimension is represented to the public
  62. dimension:
  63. # This is where Dimension is accessible from clients. Be sure to set this
  64. # to your own Dimension instance.
  65. publicUrl: {{ matrix_dimension_dimension_publicUrl | to_json }}