Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

68 строки
3.4 KiB

  1. ---
  2. # This variable acknowledges that you've reviewed breaking changes up to this version.
  3. # The playbook will fail if this is outdated, guiding you through what changed.
  4. # See the changelog: https://github.com/spantaleev/matrix-docker-ansible-deploy/blob/master/CHANGELOG.md
  5. matrix_playbook_migration_validated_version: v2026.03.23.0
  6. # The bare domain name which represents your Matrix identity.
  7. # Matrix user IDs for your server will be of the form (`@alice:example.com`).
  8. #
  9. # Note: this playbook does not touch the server referenced here.
  10. # Installation happens on another server ("matrix.example.com", see `matrix_server_fqn_matrix`).
  11. #
  12. # If you've deployed using the wrong domain, you'll have to run the Uninstalling step,
  13. # because you can't change the Domain after deployment.
  14. matrix_domain: example.com
  15. # The Matrix homeserver software to install.
  16. # See:
  17. # - `roles/custom/matrix-base/defaults/main.yml` for valid options
  18. # - the `docs/configuring-playbook-IMPLEMENTATION_NAME.md` documentation page, if one is available for your implementation choice
  19. #
  20. # By default, we use Synapse, because it's the only full-featured Matrix server at the moment.
  21. #
  22. # Note that the homeserver implementation of a server will not be able to be changed without data loss.
  23. matrix_homeserver_implementation: synapse
  24. # A secret used as a base, for generating various other secrets.
  25. # You can put any string here, but generating a strong one is preferred. You can create one with a command like `pwgen -s 64 1`.
  26. matrix_homeserver_generic_secret_key: ''
  27. # By default, the playbook manages its own Traefik (https://doc.traefik.io/traefik/) reverse-proxy server.
  28. # It will retrieve SSL certificates for you on-demand and forward requests to all other components.
  29. # For alternatives, see `docs/configuring-playbook-own-webserver.md`.
  30. matrix_playbook_reverse_proxy_type: playbook-managed-traefik
  31. # Controls whether container networks will be created with IPv6 support.
  32. #
  33. # If you also have IPv6 support on your server/network and AAAA DNS records pointing to the server,
  34. # enabling this will effectively give you full public IPv6 connectivity (powered by NAT66).
  35. #
  36. # We recommend leaving this enabled even if you don't currently have IPv6 connectivity on your server/network.
  37. # This way, once you eventually get IPv6 connectivity, you won't have to change anything (besides DNS records).
  38. #
  39. # Flipping this setting later on requires manual work (stopping services, deleting and recreating all container networks).
  40. #
  41. # In the future, this setting will likely default to `true`, so if you really want IPv6 disabled, explicitly set this to `false`.
  42. #
  43. # People managing Docker themselves and running an older Docker version will need additional configuration.
  44. #
  45. # Learn more in `docs/configuring-ipv6.md`.
  46. devture_systemd_docker_base_ipv6_enabled: true
  47. # A Postgres password to use for the superuser Postgres user (called `matrix` by default).
  48. #
  49. # The playbook creates additional Postgres users and databases (one for each enabled service) using this superuser account.
  50. #
  51. # Changing this value subsequently requires manual work.
  52. # The value used here must be shorter than 100 characters.
  53. postgres_connection_password: ''
  54. # You can limit heavy room joins on constrained hosts.
  55. # See:
  56. # docs/configuring-playbook-synapse.md#limit-joining-heavy-rooms-on-constrained-hosts
  57. #
  58. # matrix_synapse_limit_remote_rooms_enabled: true
  59. # matrix_synapse_limit_remote_rooms_complexity: 1.0
  60. # matrix_synapse_limit_remote_rooms_admins_can_join: false