Advertisement
ruphy

Untitled

Oct 16th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  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. # Example value: example.com
  8. matrix_domain: mellon.online
  9.  
  10. # This is something which is provided to Let's Encrypt when retrieving SSL certificates for domains.
  11. #
  12. # In case SSL renewal fails at some point, you'll also get an email notification there.
  13. #
  14. # If you decide to use another method for managing SSL certifites (different than the default Let's Encrypt),
  15. # you won't be required to define this variable (see `docs/configuring-playbook-ssl-certificates.md`).
  16. #
  17. # Example value: someone@example.com
  18. matrix_ssl_lets_encrypt_support_email: mymail@gmail.com
  19.  
  20. # A shared secret (between Coturn and Synapse) used for authentication.
  21. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  22. matrix_coturn_turn_static_auth_secret: "...."
  23.  
  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.  
  28. matrix_postgres_enabled: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement