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.
 
 

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