Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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