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.
 
 

37 lines
1.6 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 `roles/matrix-base/defaults/main.yml` for valid options.
  15. matrix_homeserver_implementation: synapse
  16. # A secret used as a base, for generating various other secrets.
  17. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  18. matrix_homeserver_generic_secret_key: ''
  19. # This is something which is provided to Let's Encrypt when retrieving SSL certificates for domains.
  20. #
  21. # In case SSL renewal fails at some point, you'll also get an email notification there.
  22. #
  23. # If you decide to use another method for managing SSL certificates (different than the default Let's Encrypt),
  24. # you won't be required to define this variable (see `docs/configuring-playbook-ssl-certificates.md`).
  25. #
  26. # Example value: someone@example.com
  27. matrix_ssl_lets_encrypt_support_email: ''
  28. # A Postgres password to use for the superuser Postgres user (called `matrix` by default).
  29. #
  30. # The playbook creates additional Postgres users and databases (one for each enabled service)
  31. # using this superuser account.
  32. matrix_postgres_connection_password: ''