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.
 
 
 

219 lines
7.6 KiB

  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) 2018-2024, Slavi Pantaleev, Aine Etke, MDAD community
  3. # members
  4. # This file is distributed under the same license as the
  5. # matrix-docker-ansible-deploy package.
  6. # FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
  7. #
  8. #, fuzzy
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: matrix-docker-ansible-deploy \n"
  12. "Report-Msgid-Bugs-To: \n"
  13. "POT-Creation-Date: 2024-12-16 12:05+0900\n"
  14. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  15. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  16. "Language: jp\n"
  17. "Language-Team: jp <LL@li.org>\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=utf-8\n"
  20. "Content-Transfer-Encoding: 8bit\n"
  21. "Generated-By: Babel 2.16.0\n"
  22. #: ../../../docs/howto-srv-server-delegation.md:1
  23. msgid "Server Delegation via a DNS SRV record (advanced)"
  24. msgstr ""
  25. #: ../../../docs/howto-srv-server-delegation.md:3
  26. msgid ""
  27. "**Reminder** : unless you are affected by the [Downsides of well-known-"
  28. "based Server Delegation](howto-server-delegation.md#downsides-of-well-"
  29. "known-based-server-delegation), we suggest you **stay on the "
  30. "simple/default path**: [Server Delegation](howto-server-delegation.md) by"
  31. " [configuring well-known files](configuring-well-known.md) at the base "
  32. "domain."
  33. msgstr ""
  34. #: ../../../docs/howto-srv-server-delegation.md:5
  35. msgid ""
  36. "This guide is about configuring Server Delegation using DNS SRV records "
  37. "(for the [Traefik](https://doc.traefik.io/traefik/) webserver). This "
  38. "method has special requirements when it comes to SSL certificates, so "
  39. "various changes are required."
  40. msgstr ""
  41. #: ../../../docs/howto-srv-server-delegation.md:7
  42. msgid "Prerequisites"
  43. msgstr ""
  44. #: ../../../docs/howto-srv-server-delegation.md:9
  45. msgid ""
  46. "SRV delegation while still using the playbook provided Traefik to get / "
  47. "renew the certificate requires a wildcard certificate."
  48. msgstr ""
  49. #: ../../../docs/howto-srv-server-delegation.md:11
  50. msgid ""
  51. "To obtain / renew one from [Let's Encrypt](https://letsencrypt.org/), one"
  52. " needs to use a [DNS-01 challenge](https://letsencrypt.org/docs"
  53. "/challenge-types/#dns-01-challenge) method instead of the default "
  54. "[HTTP-01](https://letsencrypt.org/docs/challenge-"
  55. "types/#http-01-challenge)."
  56. msgstr ""
  57. #: ../../../docs/howto-srv-server-delegation.md:13
  58. msgid ""
  59. "This means that this is **limited to the list of DNS providers supported "
  60. "by Traefik**, unless you bring in your own certificate."
  61. msgstr ""
  62. #: ../../../docs/howto-srv-server-delegation.md:15
  63. msgid ""
  64. "The up-to-date list can be accessed on [traefik's "
  65. "documentation](https://doc.traefik.io/traefik/https/acme/#providers)"
  66. msgstr ""
  67. #: ../../../docs/howto-srv-server-delegation.md:17
  68. msgid "The changes"
  69. msgstr ""
  70. #: ../../../docs/howto-srv-server-delegation.md:19
  71. msgid ""
  72. "**Note**: the changes below instruct you how to do this for a basic "
  73. "Synapse installation. You will need to adapt the variable name and the "
  74. "content of the labels:"
  75. msgstr ""
  76. #: ../../../docs/howto-srv-server-delegation.md:21
  77. msgid ""
  78. "if you're using another homeserver implementation (e.g. [Conduit"
  79. "](./configuring-playbook-conduit.md) or [Dendrite](./configuring-"
  80. "playbook-dendrite.md))"
  81. msgstr ""
  82. #: ../../../docs/howto-srv-server-delegation.md:22
  83. msgid ""
  84. "if you're using [Synapse with workers enabled](./configuring-playbook-"
  85. "synapse.md#load-balancing-with-workers) (`matrix_synapse_workers_enabled:"
  86. " true`). In that case, it's actually the `matrix-synapse-reverse-proxy-"
  87. "companion` service which has Traefik labels attached"
  88. msgstr ""
  89. #: ../../../docs/howto-srv-server-delegation.md:24
  90. msgid ""
  91. "Also, all instructions below are from an older version of the playbook "
  92. "and may not work anymore."
  93. msgstr ""
  94. #: ../../../docs/howto-srv-server-delegation.md:26
  95. msgid "Federation Endpoint"
  96. msgstr ""
  97. #: ../../../docs/howto-srv-server-delegation.md:33
  98. msgid ""
  99. "This is because with SRV federation, some servers / tools (one of which "
  100. "being the federation tester) try to access the federation API using the "
  101. "resolved IP address instead of the domain name (or they are not using "
  102. "SNI). This change will make Traefik route all traffic for which the path "
  103. "match this rule go to the federation endpoint."
  104. msgstr ""
  105. #: ../../../docs/howto-srv-server-delegation.md:35
  106. msgid "Tell Traefik which certificate to serve for the federation endpoint"
  107. msgstr ""
  108. #: ../../../docs/howto-srv-server-delegation.md:37
  109. msgid ""
  110. "Now that the federation endpoint is not bound to a domain anymore we need"
  111. " to explicitely tell Traefik to use a wildcard certificate in addition to"
  112. " one containing the base name."
  113. msgstr ""
  114. #: ../../../docs/howto-srv-server-delegation.md:39
  115. msgid ""
  116. "This is because the Matrix specification expects the federation endpoint "
  117. "to be served using a certificate compatible with the base domain, "
  118. "however, the other resources on the endpoint still need a valid "
  119. "certificate to work."
  120. msgstr ""
  121. #: ../../../docs/howto-srv-server-delegation.md:48
  122. msgid "Configure the DNS-01 challenge for let's encrypt"
  123. msgstr ""
  124. #: ../../../docs/howto-srv-server-delegation.md:50
  125. msgid ""
  126. "Since we're now requesting a wildcard certificate, we need to change the "
  127. "ACME challenge method. To request a wildcard certificate from Let's "
  128. "Encrypt we are required to use the DNS-01 challenge."
  129. msgstr ""
  130. #: ../../../docs/howto-srv-server-delegation.md:52
  131. msgid "This will need 3 changes:"
  132. msgstr ""
  133. #: ../../../docs/howto-srv-server-delegation.md:53
  134. msgid "Add a new certificate resolver that works with DNS-01"
  135. msgstr ""
  136. #: ../../../docs/howto-srv-server-delegation.md:54
  137. msgid ""
  138. "Configure the resolver to allow access to the DNS zone to configure the "
  139. "records to answer the challenge (refer to [Traefik's "
  140. "documentation](https://doc.traefik.io/traefik/https/acme/#providers) to "
  141. "know which environment variables to set)"
  142. msgstr ""
  143. #: ../../../docs/howto-srv-server-delegation.md:55
  144. msgid "Tell the playbook to use the new resolver as default"
  145. msgstr ""
  146. #: ../../../docs/howto-srv-server-delegation.md:57
  147. msgid ""
  148. "We cannot just disable the default resolver as that would disable SSL in "
  149. "quite a few places in the playbook."
  150. msgstr ""
  151. #: ../../../docs/howto-srv-server-delegation.md:86
  152. msgid "Adjust Coturn's configuration"
  153. msgstr ""
  154. #: ../../../docs/howto-srv-server-delegation.md:88
  155. msgid "The last step is to alter the generated Coturn configuration."
  156. msgstr ""
  157. #: ../../../docs/howto-srv-server-delegation.md:90
  158. msgid ""
  159. "By default, Coturn is configured to wait on the certificate for the "
  160. "`matrix.` subdomain using an [instantiated systemd "
  161. "service](https://www.freedesktop.org/software/systemd/man/systemd.service.html#Service%20Templates)"
  162. " using the domain name as the parameter for this service. However, we "
  163. "need to serve the wildcard certificate, which is incompatible with "
  164. "systemd, it will try to expand the `*`, which will break and prevent "
  165. "Coturn from starting."
  166. msgstr ""
  167. #: ../../../docs/howto-srv-server-delegation.md:92
  168. msgid "We also need to indicate to Coturn where the wildcard certificate is."
  169. msgstr ""
  170. #: ../../../docs/howto-srv-server-delegation.md:94
  171. msgid ""
  172. "**⚠️ WARNING ⚠️** : On first start of the services, Coturn might still "
  173. "fail to start because Traefik is still in the process of obtaining the "
  174. "certificates. If you still get an error, make sure Traefik obtained the "
  175. "certificates and restart the Coturn service (`just start-group coturn`)."
  176. msgstr ""
  177. #: ../../../docs/howto-srv-server-delegation.md:96
  178. msgid ""
  179. "This should not happen again afterwards as Traefik will renew "
  180. "certificates well before their expiry date, and the Coturn service is "
  181. "setup to restart periodically."
  182. msgstr ""
  183. #: ../../../docs/howto-srv-server-delegation.md:122
  184. msgid "Full example of a working configuration"
  185. msgstr ""