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.
 
 

41 lines
1.4 KiB

  1. # This is something which is provided to Let's Encrypt
  2. # when retrieving the SSL certificates for `<your-domain>`.
  3. #
  4. # In case SSL renewal fails at some point, you'll also get
  5. # an email notification there.
  6. #
  7. # Example value: someone@example.com
  8. host_specific_matrix_ssl_support_email: YOUR_EMAIL_ADDRESS_HERE
  9. # This is your bare domain name (`<your-domain`).
  10. #
  11. # Note: the server specified here is not touched.
  12. #
  13. # This playbook only installs to `matrix.<your-domain>`,
  14. # but it nevertheless requires to know the bare domain name
  15. # (for configuration purposes).
  16. #
  17. # Example value: example.com
  18. host_specific_hostname_identity: YOUR_BARE_DOMAIN_NAME_HERE
  19. # A shared secret (between Synapse and Coturn) used for authentication.
  20. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  21. matrix_coturn_turn_static_auth_secret: ""
  22. # A secret used to protect access keys issued by the server.
  23. # You can put any string here, but generating a strong one is preferred (e.g. `pwgen -s 64 1`).
  24. matrix_synapse_macaroon_secret_key: ""
  25. # Set autojoin room(s)
  26. # Users who register on this homeserver will automatically be joined to these rooms
  27. matrix_autojoin_rooms: ['#room:server.tld']
  28. # Enable registrations, disabled by default.
  29. matrix_enable_reg: true
  30. # Disable Riot welcome bot, default enabled
  31. riot_welcome_bot: false
  32. # Riot public room directory server
  33. riot_roomdir_servers: ['server.tld']