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.
 
 

39 lines
1.7 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. # This is something which is provided to Let's Encrypt when retrieving SSL certificates for domains.
  22. #
  23. # In case SSL renewal fails at some point, you'll also get an email notification there.
  24. #
  25. # If you decide to use another method for managing SSL certificates (different than the default Let's Encrypt),
  26. # you won't be required to define this variable (see `docs/configuring-playbook-ssl-certificates.md`).
  27. #
  28. # Example value: someone@example.com
  29. matrix_ssl_lets_encrypt_support_email: ''
  30. # A Postgres password to use for the superuser Postgres user (called `matrix` by default).
  31. #
  32. # The playbook creates additional Postgres users and databases (one for each enabled service)
  33. # using this superuser account.
  34. devture_postgres_connection_password: ''