Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

159 satır
7.3 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-matrix-registration.md:1
  24. msgid "Setting up matrix-registration (optional)"
  25. msgstr ""
  26. #: ../../../docs/configuring-playbook-matrix-registration.md:3
  27. msgid "The playbook can install and configure [matrix-registration](https://github.com/ZerataX/matrix-registration) for you."
  28. msgstr ""
  29. #: ../../../docs/configuring-playbook-matrix-registration.md:5
  30. msgid "**WARNING**: this is a poorly maintained and buggy project. It's better to avoid using it."
  31. msgstr ""
  32. #: ../../../docs/configuring-playbook-matrix-registration.md:7
  33. msgid "**WARNING**: this is not related to [matrix-registration-bot](configuring-playbook-bot-matrix-registration-bot.md)"
  34. msgstr ""
  35. #: ../../../docs/configuring-playbook-matrix-registration.md:9
  36. msgid "matrix-registration is a simple python application to have a token based Matrix registration."
  37. msgstr ""
  38. #: ../../../docs/configuring-playbook-matrix-registration.md:11
  39. msgid "Use matrix-registration to **create unique registration links**, which people can use to register on your Matrix server. It allows you to **keep your server's registration closed (private)**, but still allow certain people (these having a special link) to register a user account."
  40. msgstr ""
  41. #: ../../../docs/configuring-playbook-matrix-registration.md:13
  42. msgid "**matrix-registration** provides 2 things:"
  43. msgstr ""
  44. #: ../../../docs/configuring-playbook-matrix-registration.md:15
  45. msgid "**an API for creating registration tokens** (unique registration links). This API can be used via `curl` or via the playbook (see [Usage](#usage) below)"
  46. msgstr ""
  47. #: ../../../docs/configuring-playbook-matrix-registration.md:17
  48. msgid "**a user registration page**, where people can use these registration tokens. By default, exposed at `https://matrix.example.com/matrix-registration`"
  49. msgstr ""
  50. #: ../../../docs/configuring-playbook-matrix-registration.md:19
  51. msgid "Adjusting the playbook configuration"
  52. msgstr ""
  53. #: ../../../docs/configuring-playbook-matrix-registration.md:21
  54. msgid "To enable matrix-registration, add the following configuration to your `inventory/host_vars/matrix.example.com/vars.yml` file:"
  55. msgstr ""
  56. #: ../../../docs/configuring-playbook-matrix-registration.md:30
  57. msgid "Adjusting the matrix-registration URL"
  58. msgstr ""
  59. #: ../../../docs/configuring-playbook-matrix-registration.md:32
  60. msgid "By default, this playbook installs the matrix-registration on the `matrix.` subdomain, at the `/matrix-registration` path (https://matrix.example.com/matrix-registration). This makes it easy to install it, because it **doesn't require additional DNS records to be set up**. If that's okay, you can skip this section."
  61. msgstr ""
  62. #: ../../../docs/configuring-playbook-matrix-registration.md:34
  63. msgid "By tweaking the `matrix_registration_hostname` and `matrix_registration_path_prefix` variables, you can easily make the service available at a **different hostname and/or path** than the default one."
  64. msgstr ""
  65. #: ../../../docs/configuring-playbook-matrix-registration.md:36
  66. msgid "Example additional configuration for your `inventory/host_vars/matrix.example.com/vars.yml` file:"
  67. msgstr ""
  68. #: ../../../docs/configuring-playbook-matrix-registration.md:44
  69. msgid "Adjusting DNS records"
  70. msgstr ""
  71. #: ../../../docs/configuring-playbook-matrix-registration.md:46
  72. msgid "If you've changed the default hostname, **you may need to adjust your DNS** records to point the matrix-registration domain to the Matrix server."
  73. msgstr ""
  74. #: ../../../docs/configuring-playbook-matrix-registration.md:48
  75. msgid "See [Configuring DNS](configuring-dns.md) for details about DNS changes."
  76. msgstr ""
  77. #: ../../../docs/configuring-playbook-matrix-registration.md:50
  78. msgid "If you've decided to use the default hostname, you won't need to do any extra DNS configuration."
  79. msgstr ""
  80. #: ../../../docs/configuring-playbook-matrix-registration.md:52
  81. msgid "Installing"
  82. msgstr ""
  83. #: ../../../docs/configuring-playbook-matrix-registration.md:54
  84. msgid "After configuring the playbook and potentially [adjusting your DNS records](#adjusting-dns-records), run the playbook with [playbook tags](playbook-tags.md) as below:"
  85. msgstr ""
  86. #: ../../../docs/configuring-playbook-matrix-registration.md:61
  87. msgid "The shortcut commands with the [`just` program](just.md) are also available: `just install-all` or `just setup-all`"
  88. msgstr ""
  89. #: ../../../docs/configuring-playbook-matrix-registration.md:63
  90. msgid "`just install-all` is useful for maintaining your setup quickly ([2x-5x faster](../CHANGELOG.md#2x-5x-performance-improvements-in-playbook-runtime) than `just setup-all`) when its components remain unchanged. If you adjust your `vars.yml` to remove other components, you'd need to run `just setup-all`, or these components will still remain installed. Note these shortcuts run the `ensure-matrix-users-created` tag too."
  91. msgstr ""
  92. #: ../../../docs/configuring-playbook-matrix-registration.md:65
  93. msgid "Usage"
  94. msgstr ""
  95. #: ../../../docs/configuring-playbook-matrix-registration.md:67
  96. msgid "**matrix-registration** gets exposed at `https://matrix.example.com/matrix-registration`"
  97. msgstr ""
  98. #: ../../../docs/configuring-playbook-matrix-registration.md:69
  99. msgid "It provides various [APIs](https://github.com/ZerataX/matrix-registration/wiki/api) - for creating registration tokens, listing tokens, disabling tokens, etc. To make use of all of its capabilities, consider using `curl`."
  100. msgstr ""
  101. #: ../../../docs/configuring-playbook-matrix-registration.md:71
  102. msgid "We make the most common APIs easy to use via the playbook (see below)."
  103. msgstr ""
  104. #: ../../../docs/configuring-playbook-matrix-registration.md:73
  105. msgid "Creating registration tokens"
  106. msgstr ""
  107. #: ../../../docs/configuring-playbook-matrix-registration.md:75
  108. msgid "To **create a new user registration token (link)**, use this command:"
  109. msgstr ""
  110. #: ../../../docs/configuring-playbook-matrix-registration.md:83
  111. msgid "The above command creates and returns a **one-time use** token, which **expires** on the 31st of December 2021. Adjust the `one_time` and `ex_date` variables as you see fit."
  112. msgstr ""
  113. #: ../../../docs/configuring-playbook-matrix-registration.md:85
  114. msgid "Share the unique registration link (generated by the command above) with users to let them register on your Matrix server."
  115. msgstr ""
  116. #: ../../../docs/configuring-playbook-matrix-registration.md:87
  117. msgid "Listing registration tokens"
  118. msgstr ""
  119. #: ../../../docs/configuring-playbook-matrix-registration.md:89
  120. msgid "To **list the existing user registration tokens**, use this command:"
  121. msgstr ""
  122. #: ../../../docs/configuring-playbook-matrix-registration.md:96
  123. msgid "The shortcut command with `just` program is also available: `just run-tags list-matrix-registration-tokens`"
  124. msgstr ""