Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

36 righe
1.6 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. # This is something which is provided to Let's Encrypt when retrieving SSL certificates for domains.
  13. #
  14. # In case SSL renewal fails at some point, you'll also get an email notification there.
  15. #
  16. # If you decide to use another method for managing SSL certifites (different than the default Let's Encrypt),
  17. # you won't be required to define this variable (see `docs/configuring-playbook-ssl-certificates.md`).
  18. #
  19. # Example value: someone@example.com
  20. matrix_ssl_lets_encrypt_support_email: ''
  21. # A shared secret (between Coturn and Synapse) used for authentication.
  22. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  23. matrix_coturn_turn_static_auth_secret: ''
  24. # A secret used to protect access keys issued by the server.
  25. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  26. matrix_synapse_macaroon_secret_key: ''
  27. # A Postgres password to use for the superuser Postgres user (called `matrix` by default).
  28. #
  29. # The playbook creates additional Postgres users and databases (one for each enabled service)
  30. # using this superuser account.
  31. matrix_postgres_connection_password: ''