Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

174 Zeilen
6.0 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/configuring-playbook-ssl-certificates.md:1
  23. msgid "Adjusting SSL certificate retrieval (optional, advanced)"
  24. msgstr ""
  25. #: ../../../docs/configuring-playbook-ssl-certificates.md:3
  26. msgid ""
  27. "By default, this playbook retrieves and auto-renews free SSL certificates"
  28. " from [Let's Encrypt](https://letsencrypt.org/) for the domains it needs "
  29. "(e.g. `matrix.example.com` and others)"
  30. msgstr ""
  31. #: ../../../docs/configuring-playbook-ssl-certificates.md:5
  32. msgid ""
  33. "This guide is about using the integrated Traefik server and doesn't apply"
  34. " if you're using [your own webserver](configuring-playbook-own-"
  35. "webserver.md)."
  36. msgstr ""
  37. #: ../../../docs/configuring-playbook-ssl-certificates.md:7
  38. msgid "Using staging Let's Encrypt certificates instead of real ones"
  39. msgstr ""
  40. #: ../../../docs/configuring-playbook-ssl-certificates.md:9
  41. msgid ""
  42. "For testing purposes, you may wish to use staging certificates provide by"
  43. " Let's Encrypt."
  44. msgstr ""
  45. #: ../../../docs/configuring-playbook-ssl-certificates.md:11
  46. #: ../../../docs/configuring-playbook-ssl-certificates.md:21
  47. msgid ""
  48. "Add the following configuration to your "
  49. "`inventory/host_vars/matrix.example.com/vars.yml` file:"
  50. msgstr ""
  51. #: ../../../docs/configuring-playbook-ssl-certificates.md:17
  52. msgid "Disabling SSL termination"
  53. msgstr ""
  54. #: ../../../docs/configuring-playbook-ssl-certificates.md:19
  55. msgid ""
  56. "For testing or other purposes, you may wish to install services without "
  57. "SSL termination and have services exposed to `http://` instead of "
  58. "`https://`."
  59. msgstr ""
  60. #: ../../../docs/configuring-playbook-ssl-certificates.md:27
  61. msgid "Using self-signed SSL certificates"
  62. msgstr ""
  63. #: ../../../docs/configuring-playbook-ssl-certificates.md:29
  64. msgid ""
  65. "If you'd like to use your own SSL certificates, instead of the default "
  66. "(SSL certificates obtained automatically via "
  67. "[ACME](https://en.wikipedia.org/wiki/Automatic_Certificate_Management_Environment)"
  68. " from [Let's Encrypt](https://letsencrypt.org/)):"
  69. msgstr ""
  70. #: ../../../docs/configuring-playbook-ssl-certificates.md:31
  71. msgid "generate your self-signed certificate files"
  72. msgstr ""
  73. #: ../../../docs/configuring-playbook-ssl-certificates.md:32
  74. msgid ""
  75. "follow the [Using your own SSL certificates](#using-your-own-ssl-"
  76. "certificates) documentation below"
  77. msgstr ""
  78. #: ../../../docs/configuring-playbook-ssl-certificates.md:34
  79. msgid "Using your own SSL certificates"
  80. msgstr ""
  81. #: ../../../docs/configuring-playbook-ssl-certificates.md:36
  82. msgid "To use your own SSL certificates with Traefik, you need to:"
  83. msgstr ""
  84. #: ../../../docs/configuring-playbook-ssl-certificates.md:38
  85. msgid ""
  86. "disable "
  87. "[ACME](https://en.wikipedia.org/wiki/Automatic_Certificate_Management_Environment)"
  88. " / [Let's Encrypt](https://letsencrypt.org/) support"
  89. msgstr ""
  90. #: ../../../docs/configuring-playbook-ssl-certificates.md:39
  91. msgid ""
  92. "put a custom Traefik configuration file on the server, with the help of "
  93. "this Ansible playbook (via the [`aux` role](https://github.com/mother-of-"
  94. "all-self-hosting/ansible-role-aux)) or manually"
  95. msgstr ""
  96. #: ../../../docs/configuring-playbook-ssl-certificates.md:40
  97. msgid ""
  98. "register your custom configuration file with Traefik, by adding an extra "
  99. "provider of type [file](https://doc.traefik.io/traefik/providers/file/)"
  100. msgstr ""
  101. #: ../../../docs/configuring-playbook-ssl-certificates.md:41
  102. msgid ""
  103. "put the SSL files on the server, with the help of this Ansible playbook "
  104. "(via the [`aux` role](https://github.com/mother-of-all-self-hosting"
  105. "/ansible-role-aux)) or manually"
  106. msgstr ""
  107. #: ../../../docs/configuring-playbook-ssl-certificates.md:89
  108. msgid "Using a DNS-01 ACME challenge type, instead of HTTP-01"
  109. msgstr ""
  110. #: ../../../docs/configuring-playbook-ssl-certificates.md:91
  111. msgid ""
  112. "You can configure Traefik to use the [DNS-01 challenge "
  113. "type](https://letsencrypt.org/docs/challenge-types/#dns-01-challenge) for"
  114. " Let's Encrypt. This is less commonly used than the default [HTTP-01 "
  115. "challenge type](https://letsencrypt.org/docs/challenge-"
  116. "types/#http-01-challenge), but it can be helpful to:"
  117. msgstr ""
  118. #: ../../../docs/configuring-playbook-ssl-certificates.md:93
  119. msgid "hide your public IP from Let's Encrypt logs"
  120. msgstr ""
  121. #: ../../../docs/configuring-playbook-ssl-certificates.md:94
  122. msgid ""
  123. "allow you to obtain SSL certificates for servers which are not accessible"
  124. " (via HTTP) from the public internet (and for which the HTTP-01 challenge"
  125. " would fail)"
  126. msgstr ""
  127. #: ../../../docs/configuring-playbook-ssl-certificates.md:96
  128. msgid ""
  129. "This is an example for how to edit the `vars.yml` file if you're using "
  130. "Cloudflare:"
  131. msgstr ""
  132. #: ../../../docs/configuring-playbook-ssl-certificates.md:111
  133. msgid ""
  134. "Make sure to change the value of \"provider\" to your particular DNS "
  135. "solution, and provide the appropriate environment variables. The full "
  136. "list of supported providers is available "
  137. "[here](https://doc.traefik.io/traefik/https/acme/#providers)."
  138. msgstr ""
  139. #: ../../../docs/configuring-playbook-ssl-certificates.md:113
  140. msgid ""
  141. "This example assumes you're using Cloudflare to manage your DNS zone. "
  142. "Note that it requires the use of two tokens: one for reading all zones "
  143. "(`CF_ZONE_API_TOKEN`) and another that must be able to edit the "
  144. "particular domain you're using (`CF_DNS_API_TOKEN`). For security, it's "
  145. "recommended that you create two fine-grained tokens for this purpose, but"
  146. " you might choose to use the same token for both."
  147. msgstr ""