Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

138 líneas
6.9 KiB

  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) 2018-2026, Slavi Pantaleev, Aine Etke, MDAD community members
  3. # This file is distributed under the same license as the matrix-docker-ansible-deploy package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: matrix-docker-ansible-deploy \n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2026-03-03 10:49+0000\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: ../../../docs/configuring-playbook-livekit-server.md:8
  19. msgid "Setting up LiveKit Server (optional)"
  20. msgstr ""
  21. #: ../../../docs/configuring-playbook-livekit-server.md:10
  22. msgid "The playbook can install and configure [LiveKit Server](https://github.com/livekit/livekit) for you."
  23. msgstr ""
  24. #: ../../../docs/configuring-playbook-livekit-server.md:12
  25. msgid "LiveKit Server is an open source project that provides scalable, multi-user conferencing based on WebRTC. It's designed to provide everything you need to build real-time video audio data capabilities in your applications."
  26. msgstr ""
  27. #: ../../../docs/configuring-playbook-livekit-server.md:14
  28. msgid "💡 LiveKit Server is automatically installed and configured when either [Element Call](configuring-playbook-element-call.md) or the [Matrix RTC stack](configuring-playbook-matrix-rtc.md) is enabled, so you don't need to do anything extra."
  29. msgstr ""
  30. #: ../../../docs/configuring-playbook-livekit-server.md:16
  31. msgid "The [Ansible role for LiveKit Server](https://github.com/mother-of-all-self-hosting/ansible-role-livekit-server) is developed and maintained by [the MASH (mother-of-all-self-hosting) project](https://github.com/mother-of-all-self-hosting). For details about configuring LiveKit Server, you can check them via:"
  32. msgstr ""
  33. #: ../../../docs/configuring-playbook-livekit-server.md:17
  34. msgid "🌐 [the role's documentation at the MASH project](https://github.com/mother-of-all-self-hosting/ansible-role-livekit-server/blob/main/docs/configuring-livekit-server.md) online"
  35. msgstr ""
  36. #: ../../../docs/configuring-playbook-livekit-server.md:18
  37. msgid "📁 `roles/galaxy/livekit_server/docs/configuring-livekit-server.md` locally, if you have [fetched the Ansible roles](installing.md#update-ansible-roles)"
  38. msgstr ""
  39. #: ../../../docs/configuring-playbook-livekit-server.md:20
  40. msgid "Adjusting firewall rules"
  41. msgstr ""
  42. #: ../../../docs/configuring-playbook-livekit-server.md:22
  43. msgid "To ensure LiveKit Server functions correctly, the following firewall rules and port forwarding settings are required:"
  44. msgstr ""
  45. #: ../../../docs/configuring-playbook-livekit-server.md:24
  46. msgid "`7881/tcp`: ICE/TCP"
  47. msgstr ""
  48. #: ../../../docs/configuring-playbook-livekit-server.md:26
  49. msgid "`7882/udp`: ICE/UDP Mux"
  50. msgstr ""
  51. #: ../../../docs/configuring-playbook-livekit-server.md:28
  52. msgid "`3479/udp`: TURN/UDP. Also see the [Limitations](#limitations) section below."
  53. msgstr ""
  54. #: ../../../docs/configuring-playbook-livekit-server.md:30
  55. msgid "`5350/tcp`: TURN/TCP. Also see the [Limitations](#limitations) section below."
  56. msgstr ""
  57. #: ../../../docs/configuring-playbook-livekit-server.md:32
  58. msgid "`30000-30020/udp`: TURN relay range used by LiveKit's embedded TURN server."
  59. msgstr ""
  60. #: ../../../docs/configuring-playbook-livekit-server.md:34
  61. msgid "💡 The suggestions above are inspired by the upstream [Ports and Firewall](https://docs.livekit.io/home/self-hosting/ports-firewall/) documentation based on how LiveKit is configured in the playbook. If you're using custom configuration for the LiveKit Server role, you may need to adjust firewall rules accordingly."
  62. msgstr ""
  63. #: ../../../docs/configuring-playbook-livekit-server.md:36
  64. msgid "TURN TLS handling"
  65. msgstr ""
  66. #: ../../../docs/configuring-playbook-livekit-server.md:38
  67. msgid "When `matrix_playbook_reverse_proxy_type` is `playbook-managed-traefik` (which is the default for this playbook), TURN over TCP is terminated by Traefik and forwarded to LiveKit with `turn.external_tls = true`. In this playbook default, this mode is enabled automatically when SSL is enabled and TURN is enabled."
  68. msgstr ""
  69. #: ../../../docs/configuring-playbook-livekit-server.md:40
  70. msgid "The playbook installs a dedicated Traefik TCP entrypoint for TURN (`matrix-livekit-turn`) by default and binds it to `tcp/5350`."
  71. msgstr ""
  72. #: ../../../docs/configuring-playbook-livekit-server.md:41
  73. msgid "`livekit_server_config_turn_external_tls` is automatically enabled for this setup."
  74. msgstr ""
  75. #: ../../../docs/configuring-playbook-livekit-server.md:42
  76. msgid "Because Traefik handles TLS, LiveKit no longer needs certificate-file paths for TURN in this mode."
  77. msgstr ""
  78. #: ../../../docs/configuring-playbook-livekit-server.md:44
  79. msgid "To opt out and keep TURN TLS termination in LiveKit itself, set:"
  80. msgstr ""
  81. #: ../../../docs/configuring-playbook-livekit-server.md:50
  82. msgid "In this playbook, certificate paths are managed automatically via `group_vars/matrix_servers` when certificate dumping is enabled."
  83. msgstr ""
  84. #: ../../../docs/configuring-playbook-livekit-server.md:52
  85. msgid "If your setup uses `other-traefik-container` or [another reverse-proxy](./configuring-playbook-own-webserver.md), behavior is unchanged by default and still relies on certificates being available inside the container as before."
  86. msgstr ""
  87. #: ../../../docs/configuring-playbook-livekit-server.md:54
  88. msgid "Deployments using `other-traefik-container` can opt into the same Traefik-terminated mode there, by setting:"
  89. msgstr ""
  90. #: ../../../docs/configuring-playbook-livekit-server.md:62
  91. msgid "and configuring their own Traefik TCP entrypoint dedicated to LiveKit TURN traffic."
  92. msgstr ""
  93. #: ../../../docs/configuring-playbook-livekit-server.md:64
  94. msgid "Limitations"
  95. msgstr ""
  96. #: ../../../docs/configuring-playbook-livekit-server.md:66
  97. msgid "LiveKit Server's TURN listener behavior depends on where TLS is terminated:"
  98. msgstr ""
  99. #: ../../../docs/configuring-playbook-livekit-server.md:68
  100. msgid "Direct LiveKit TURN listeners (`livekit_server_config_turn_external_tls: false`) still use IPv4-only sockets for `3479/udp` and `5350/tcp`, so IPv6 connectivity to these endpoints is not possible."
  101. msgstr ""
  102. #: ../../../docs/configuring-playbook-livekit-server.md:69
  103. msgid "With [TURN TLS handling](#turn-tls-handling) (`livekit_server_config_turn_external_tls: true`), the playbook's dedicated `matrix-livekit-turn` TCP entrypoint can still listen on both IPv4 and IPv6. Traefik then forwards TURN/TCP to LiveKit."
  104. msgstr ""
  105. #: ../../../docs/configuring-playbook-livekit-server.md:71
  106. msgid "It appears that LiveKit Server intentionally only listens on `udp4` and `tcp4` in direct mode, as seen [here](https://github.com/livekit/livekit/blob/154b4d26b769c68a03c096124094b97bf61a996f/pkg/service/turn.go#L128) and [here](https://github.com/livekit/livekit/blob/154b4d26b769c68a03c096124094b97bf61a996f/pkg/service/turn.go#L92)."
  107. msgstr ""