Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

40 wiersze
1.8 KiB

  1. # The bare domain name which represents your Matrix identity.
  2. # Matrix user ids for your server will be of the form (`@user:<matrix-domain>`).
  3. #
  4. # Note: this playbook does not touch the server referenced here.
  5. # Installation happens on another server ("matrix.<matrix-domain>").
  6. #
  7. # If you've deployed using the wrong domain, you'll have to run the Uninstalling step,
  8. # because you can't change the Domain after deployment.
  9. #
  10. # Example value: example.com
  11. matrix_domain: YOUR_BARE_DOMAIN_NAME_HERE
  12. # The Matrix homeserver software to install.
  13. # See `roles/matrix-base/defaults/main.yml` for valid options.
  14. matrix_homeserver_implementation: synapse
  15. # This is something which is provided to Let's Encrypt when retrieving SSL certificates for domains.
  16. #
  17. # In case SSL renewal fails at some point, you'll also get an email notification there.
  18. #
  19. # If you decide to use another method for managing SSL certificates (different than the default Let's Encrypt),
  20. # you won't be required to define this variable (see `docs/configuring-playbook-ssl-certificates.md`).
  21. #
  22. # Example value: someone@example.com
  23. matrix_ssl_lets_encrypt_support_email: ''
  24. # A shared secret (between Coturn and Synapse) used for authentication.
  25. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  26. matrix_coturn_turn_static_auth_secret: ''
  27. # A secret used to protect access keys issued by the server.
  28. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  29. matrix_synapse_macaroon_secret_key: ''
  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. matrix_postgres_connection_password: ''