Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

62 rivejä
3.2 KiB

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