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

66 строки
3.3 KiB

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. # The bare domain name which represents your Matrix identity.
  6. # Matrix user IDs for your server will be of the form (`@user:example.com`).
  7. #
  8. # Note: this playbook does not touch the server referenced here.
  9. # Installation happens on another server ("matrix.example.com", see `matrix_server_fqn_matrix`).
  10. #
  11. # If you've deployed using the wrong domain, you'll have to run the Uninstalling step,
  12. # because you can't change the Domain after deployment.
  13. matrix_domain: example.com
  14. # The Matrix homeserver software to install.
  15. # See:
  16. # - `roles/custom/matrix-base/defaults/main.yml` for valid options
  17. # - the `docs/configuring-playbook-IMPLEMENTATION_NAME.md` documentation page, if one is available for your implementation choice
  18. #
  19. # By default, we use Synapse, because it's the only full-featured Matrix server at the moment.
  20. #
  21. # Note that the homeserver implementation of a server will not be able to be changed without data loss.
  22. matrix_homeserver_implementation: synapse
  23. # A secret used as a base, for generating various other secrets.
  24. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  25. matrix_homeserver_generic_secret_key: ''
  26. # By default, the playbook manages its own Traefik (https://doc.traefik.io/traefik/) reverse-proxy server.
  27. # It will retrieve SSL certificates for you on-demand and forward requests to all other components.
  28. # For alternatives, see `docs/configuring-playbook-own-webserver.md`.
  29. matrix_playbook_reverse_proxy_type: playbook-managed-traefik
  30. # This is something which is provided to Let's Encrypt when retrieving SSL certificates for domains.
  31. #
  32. # In case SSL renewal fails at some point, you'll also get an email notification there.
  33. #
  34. # If you decide to use another method for managing SSL certificates (different than the default Let's Encrypt),
  35. # you won't be required to define this variable (see `docs/configuring-playbook-ssl-certificates.md`).
  36. #
  37. # Example value: someone@example.com
  38. traefik_config_certificatesResolvers_acme_email: ''
  39. # A Postgres password to use for the superuser Postgres user (called `matrix` by default).
  40. #
  41. # The playbook creates additional Postgres users and databases (one for each enabled service)
  42. # using this superuser account.
  43. postgres_connection_password: ''
  44. # By default, we configure Coturn's external IP address using the value specified for `ansible_host` in your `inventory/hosts` file.
  45. # If this value is an external IP address, you can skip this section.
  46. #
  47. # If `ansible_host` is not the server's external IP address, you have 2 choices:
  48. # 1. Uncomment the line below, to allow IP address auto-detection to happen (more on this below)
  49. # 2. Uncomment and adjust the line below to specify an IP address manually
  50. #
  51. # By default, auto-detection will be attempted using the `https://ifconfig.co/json` API.
  52. # Default values for this are specified in `matrix_coturn_turn_external_ip_address_auto_detection_*` variables in the Coturn role
  53. # (see `roles/custom/matrix-coturn/defaults/main.yml`).
  54. #
  55. # If your server has multiple IP addresses, you may define them in another variable which allows a list of addresses.
  56. # Example: `matrix_coturn_turn_external_ip_addresses: ['1.2.3.4', '4.5.6.7']`
  57. #
  58. # matrix_coturn_turn_external_ip_address: ''