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.
 
 
 

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