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.
 
 

150 lines
5.5 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: 2025-01-27 09:54+0200\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/configuring-dns.md:1
  23. msgid "Configuring your DNS settings"
  24. msgstr ""
  25. #: ../../../docs/configuring-dns.md:3
  26. msgid "<sup>[Prerequisites](prerequisites.md) > Configuring your DNS settings > [Getting the playbook](getting-the-playbook.md) > [Configuring the playbook](configuring-playbook.md) > [Installing](installing.md)</sup>"
  27. msgstr ""
  28. #: ../../../docs/configuring-dns.md:5
  29. msgid "To set up Matrix on your domain, you'd need to do some DNS configuration."
  30. msgstr ""
  31. #: ../../../docs/configuring-dns.md:7
  32. msgid "DNS settings for services enabled by default"
  33. msgstr ""
  34. #: ../../../docs/configuring-dns.md:9
  35. msgid "To serve the base domain (`example.com`) and [Element Web](configuring-playbook-client-element-web.md) with the default subdomain, adjust DNS records as below."
  36. msgstr ""
  37. #: ../../../docs/configuring-dns.md
  38. msgid "Type"
  39. msgstr ""
  40. #: ../../../docs/configuring-dns.md
  41. msgid "Host"
  42. msgstr ""
  43. #: ../../../docs/configuring-dns.md
  44. msgid "Priority"
  45. msgstr ""
  46. #: ../../../docs/configuring-dns.md
  47. msgid "Weight"
  48. msgstr ""
  49. #: ../../../docs/configuring-dns.md
  50. msgid "Port"
  51. msgstr ""
  52. #: ../../../docs/configuring-dns.md
  53. msgid "Target"
  54. msgstr ""
  55. #: ../../../docs/configuring-dns.md
  56. msgid "A"
  57. msgstr ""
  58. #: ../../../docs/configuring-dns.md
  59. msgid "`matrix`"
  60. msgstr ""
  61. #: ../../../docs/configuring-dns.md
  62. msgid "-"
  63. msgstr ""
  64. #: ../../../docs/configuring-dns.md
  65. msgid "`matrix-server-IP`"
  66. msgstr ""
  67. #: ../../../docs/configuring-dns.md
  68. msgid "CNAME"
  69. msgstr ""
  70. #: ../../../docs/configuring-dns.md
  71. msgid "`element`"
  72. msgstr ""
  73. #: ../../../docs/configuring-dns.md
  74. msgid "`matrix.example.com`"
  75. msgstr ""
  76. #: ../../../docs/configuring-dns.md:16
  77. msgid "As the table illustrates, you need to create 2 subdomains (`matrix.example.com` and `element.example.com`) and point both of them to your server's IP address (DNS `A` record or `CNAME` record is fine)."
  78. msgstr ""
  79. #: ../../../docs/configuring-dns.md:18
  80. msgid "The `element.example.com` subdomain is necessary, because this playbook installs the [Element Web](https://github.com/element-hq/element-web) client for you by default. If you'd rather instruct the playbook not to install Element Web (`matrix_client_element_enabled: false` when [Configuring the playbook](configuring-playbook.md) later), feel free to skip the `element.example.com` DNS record."
  81. msgstr ""
  82. #: ../../../docs/configuring-dns.md:20
  83. msgid "Be mindful as to how long it will take for the DNS records to propagate."
  84. msgstr ""
  85. #: ../../../docs/configuring-dns.md:22
  86. msgid "**Note**: if you are using Cloudflare DNS, make sure to disable the proxy and set all records to \"DNS only\". Otherwise, fetching certificates will fail."
  87. msgstr ""
  88. #: ../../../docs/configuring-dns.md:24
  89. msgid "DNS setting for server delegation (optional)"
  90. msgstr ""
  91. #: ../../../docs/configuring-dns.md:26
  92. msgid "In the sample `vars.yml` ([`examples/vars.yml`](../examples/vars.yml)), we recommend to use a short user ID like `@alice:example.com` instead of `@alice:matrix.example.com`."
  93. msgstr ""
  94. #: ../../../docs/configuring-dns.md:28
  95. msgid "To use such an ID, you don't need to install anything on the actual `example.com` server. Instead, you need to instruct the Matrix network that Matrix services for `example.com` are redirected over to `matrix.example.com`. This redirection is also known as \"delegation\"."
  96. msgstr ""
  97. #: ../../../docs/configuring-dns.md:30
  98. msgid "As we discuss in [Server Delegation](howto-server-delegation.md), server delegation can be configured in either of these ways:"
  99. msgstr ""
  100. #: ../../../docs/configuring-dns.md:32
  101. msgid "Setting up a `/.well-known/matrix/server` file on the base domain (`example.com`)"
  102. msgstr ""
  103. #: ../../../docs/configuring-dns.md:33
  104. msgid "Setting up a `_matrix._tcp` DNS SRV record"
  105. msgstr ""
  106. #: ../../../docs/configuring-dns.md:35
  107. msgid "For simplicity reasons, this playbook recommends you to set up server delegation via a `/.well-known/matrix/server` file, instead of using a DNS SRV record."
  108. msgstr ""
  109. #: ../../../docs/configuring-dns.md:37
  110. msgid "If you choose the recommended method (file-based delegation), you do not need to configure the DNS record to enable server delegation. You will need to add a necessary configuration later, when you [finalize the installation](installing.md#finalize-the-installation) after installing and starting Matrix services."
  111. msgstr ""
  112. #: ../../../docs/configuring-dns.md:39
  113. msgid "On the other hand, if you choose this method (setting up a DNS SRV record), you need to configure the additional DNS record as well as adjust SSL certificate handling. Take a look at this documentation for more information: [Server Delegation via a DNS SRV record (advanced)](howto-server-delegation.md#server-delegation-via-a-dns-srv-record-advanced)"
  114. msgstr ""
  115. #: ../../../docs/configuring-dns.md:43
  116. msgid "[▶️](getting-the-playbook.md) When you're done with the DNS configuration and ready to proceed, continue with [Getting the playbook](getting-the-playbook.md)."
  117. msgstr ""