Matrix Docker Ansible eploy
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

52 rader
2.7 KiB

  1. ---
  2. # The bare domain name which represents your Matrix identity.
  3. # Matrix user IDs for your server will be of the form (`@alice:example.com`).
  4. #
  5. # Note: this playbook does not touch the server referenced here.
  6. # Installation happens on another server ("matrix.example.com", see `matrix_server_fqn_matrix`).
  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. matrix_domain: example.com
  11. # The Matrix homeserver software to install.
  12. # See:
  13. # - `roles/custom/matrix-base/defaults/main.yml` for valid options
  14. # - the `docs/configuring-playbook-IMPLEMENTATION_NAME.md` documentation page, if one is available for your implementation choice
  15. #
  16. # By default, we use Synapse, because it's the only full-featured Matrix server at the moment.
  17. #
  18. # Note that the homeserver implementation of a server will not be able to be changed without data loss.
  19. matrix_homeserver_implementation: synapse
  20. # A secret used as a base, for generating various other secrets.
  21. # You can put any string here, but generating a strong one is preferred. You can create one with a command like `pwgen -s 64 1`.
  22. matrix_homeserver_generic_secret_key: ''
  23. # By default, the playbook manages its own Traefik (https://doc.traefik.io/traefik/) reverse-proxy server.
  24. # It will retrieve SSL certificates for you on-demand and forward requests to all other components.
  25. # For alternatives, see `docs/configuring-playbook-own-webserver.md`.
  26. matrix_playbook_reverse_proxy_type: playbook-managed-traefik
  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. postgres_connection_password: ''
  32. # By default, we configure coturn's external IP address using the value specified for `ansible_host` in your `inventory/hosts` file.
  33. # If this value is an external IP address, you can skip this section.
  34. #
  35. # If `ansible_host` is not the server's external IP address, you have 2 choices:
  36. # 1. Uncomment the line below, to allow IP address auto-detection to happen (more on this below)
  37. # 2. Uncomment and adjust the line below to specify an IP address manually
  38. #
  39. # By default, auto-detection will be attempted using the `https://ifconfig.co/json` API.
  40. # Default values for this are specified in `matrix_coturn_turn_external_ip_address_auto_detection_*` variables in the coturn role
  41. # (see `roles/custom/matrix-coturn/defaults/main.yml`).
  42. #
  43. # If your server has multiple IP addresses, you may define them in another variable which allows a list of addresses.
  44. # Example: `matrix_coturn_turn_external_ip_addresses: ['1.2.3.4', '4.5.6.7']`
  45. #
  46. # matrix_coturn_turn_external_ip_address: ''