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

122 строки
5.9 KiB

  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) 2018-2025, Slavi Pantaleev, Aine Etke, MDAD community members
  3. # This file is distributed under the same license as the matrix-docker-ansible-deploy package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: matrix-docker-ansible-deploy \n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2025-01-27 09:54+0200\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: ../../../docs/configuring-playbook-ssl-certificates.md:1
  19. msgid "Adjusting SSL certificate retrieval (optional, advanced)"
  20. msgstr ""
  21. #: ../../../docs/configuring-playbook-ssl-certificates.md:3
  22. 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)"
  23. msgstr ""
  24. #: ../../../docs/configuring-playbook-ssl-certificates.md:5
  25. 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)."
  26. msgstr ""
  27. #: ../../../docs/configuring-playbook-ssl-certificates.md:7
  28. msgid "Using staging Let's Encrypt certificates instead of real ones"
  29. msgstr ""
  30. #: ../../../docs/configuring-playbook-ssl-certificates.md:9
  31. msgid "For testing purposes, you may wish to use staging certificates provide by Let's Encrypt."
  32. msgstr ""
  33. #: ../../../docs/configuring-playbook-ssl-certificates.md:11
  34. msgid "Add the following configuration to your `inventory/host_vars/matrix.example.com/vars.yml` file:"
  35. msgstr ""
  36. #: ../../../docs/configuring-playbook-ssl-certificates.md:17
  37. msgid "Disabling SSL termination"
  38. msgstr ""
  39. #: ../../../docs/configuring-playbook-ssl-certificates.md:19
  40. msgid "For testing or other purposes, you may wish to install services without SSL termination and have services exposed to `http://` instead of `https://`."
  41. msgstr ""
  42. #: ../../../docs/configuring-playbook-ssl-certificates.md:21
  43. msgid "Add the following configuration to your `vars.yml` file:"
  44. msgstr ""
  45. #: ../../../docs/configuring-playbook-ssl-certificates.md:27
  46. msgid "Using self-signed SSL certificates"
  47. msgstr ""
  48. #: ../../../docs/configuring-playbook-ssl-certificates.md:29
  49. 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/)):"
  50. msgstr ""
  51. #: ../../../docs/configuring-playbook-ssl-certificates.md:31
  52. msgid "generate your self-signed certificate files"
  53. msgstr ""
  54. #: ../../../docs/configuring-playbook-ssl-certificates.md:32
  55. msgid "follow the [Using your own SSL certificates](#using-your-own-ssl-certificates) documentation below"
  56. msgstr ""
  57. #: ../../../docs/configuring-playbook-ssl-certificates.md:34
  58. msgid "Using your own SSL certificates"
  59. msgstr ""
  60. #: ../../../docs/configuring-playbook-ssl-certificates.md:36
  61. msgid "To use your own SSL certificates with Traefik, you need to:"
  62. msgstr ""
  63. #: ../../../docs/configuring-playbook-ssl-certificates.md:38
  64. msgid "disable [ACME](https://en.wikipedia.org/wiki/Automatic_Certificate_Management_Environment) / [Let's Encrypt](https://letsencrypt.org/) support"
  65. msgstr ""
  66. #: ../../../docs/configuring-playbook-ssl-certificates.md:39
  67. 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"
  68. msgstr ""
  69. #: ../../../docs/configuring-playbook-ssl-certificates.md:40
  70. msgid "register your custom configuration file with Traefik, by adding an extra provider of type [file](https://doc.traefik.io/traefik/providers/file/)"
  71. msgstr ""
  72. #: ../../../docs/configuring-playbook-ssl-certificates.md:41
  73. 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"
  74. msgstr ""
  75. #: ../../../docs/configuring-playbook-ssl-certificates.md:89
  76. msgid "Using a DNS-01 ACME challenge type, instead of HTTP-01"
  77. msgstr ""
  78. #: ../../../docs/configuring-playbook-ssl-certificates.md:91
  79. 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:"
  80. msgstr ""
  81. #: ../../../docs/configuring-playbook-ssl-certificates.md:93
  82. msgid "hide your public IP from Let's Encrypt logs"
  83. msgstr ""
  84. #: ../../../docs/configuring-playbook-ssl-certificates.md:94
  85. 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)"
  86. msgstr ""
  87. #: ../../../docs/configuring-playbook-ssl-certificates.md:96
  88. msgid "This is an example for how to edit the `vars.yml` file if you're using Cloudflare:"
  89. msgstr ""
  90. #: ../../../docs/configuring-playbook-ssl-certificates.md:111
  91. 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)."
  92. msgstr ""
  93. #: ../../../docs/configuring-playbook-ssl-certificates.md:113
  94. 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."
  95. msgstr ""