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.
 
 

71 line
3.8 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. # Controls whether container networks will be created with IPv6 support.
  28. #
  29. # If you also have IPv6 support on your server/network and AAAA DNS records pointing to the server,
  30. # enabling this will effectively give you full public IPv6 connectivity (powered by NAT66).
  31. #
  32. # We recommend leaving this enabled even if you don't currently have IPv6 connectivity on your server/network.
  33. # This way, once you eventually get IPv6 connectivity, you won't have to change anything (besides DNS records).
  34. #
  35. # Flipping this setting later on requires manual work (stopping services, deleting and recreating all container networks).
  36. #
  37. # In the future, this setting will likely default to `true`, so if you really want IPv6 disabled, explicitly set this to `false`.
  38. #
  39. # People managing Docker themselves and running an older Docker version will need additional configuration.
  40. #
  41. # Learn more in `docs/configuring-ipv6.md`.
  42. devture_systemd_docker_base_ipv6_enabled: true
  43. # A Postgres password to use for the superuser Postgres user (called `matrix` by default).
  44. #
  45. # The playbook creates additional Postgres users and databases (one for each enabled service) using this superuser account.
  46. #
  47. # Changing this value subsequently requires manual work.
  48. # The value used here must be shorter than 100 characters.
  49. postgres_connection_password: ''
  50. # By default, we configure coturn's external IP address using the value specified for `ansible_host` in your `inventory/hosts` file.
  51. # If this value is an external IP address, you can skip this section.
  52. #
  53. # If `ansible_host` is not the server's external IP address, you have 2 choices:
  54. # 1. Uncomment the line below, to allow IP address auto-detection to happen (more on this below)
  55. # 2. Uncomment and adjust the line below to specify an IP address manually
  56. #
  57. # By default, auto-detection will be attempted using the `https://ifconfig.co/json` API.
  58. # Default values for this are specified in `matrix_coturn_turn_external_ip_address_auto_detection_*` variables in the coturn role
  59. # (see `roles/custom/matrix-coturn/defaults/main.yml`).
  60. #
  61. # If your server has multiple IP addresses, you may define them in another variable which allows a list of addresses.
  62. # Example: `matrix_coturn_turn_external_ip_addresses: ['1.2.3.4', '4.5.6.7']`
  63. #
  64. # matrix_coturn_turn_external_ip_address: ''