Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

158 linhas
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: 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: 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-matrix-registration.md:1
  23. msgid "Setting up matrix-registration (optional)"
  24. msgstr ""
  25. #: ../../../docs/configuring-playbook-matrix-registration.md:3
  26. msgid "⚠️ **Warnings**:"
  27. msgstr ""
  28. #: ../../../docs/configuring-playbook-matrix-registration.md:4
  29. msgid "This is a poorly maintained and buggy project. It's better to avoid using it."
  30. msgstr ""
  31. #: ../../../docs/configuring-playbook-matrix-registration.md:5
  32. msgid "This is not related to [matrix-registration-bot](configuring-playbook-bot-matrix-registration-bot.md)"
  33. msgstr ""
  34. #: ../../../docs/configuring-playbook-matrix-registration.md:7
  35. msgid "The playbook can install and configure [matrix-registration](https://github.com/ZerataX/matrix-registration) for you. It is a simple python application to have a token based Matrix registration."
  36. msgstr ""
  37. #: ../../../docs/configuring-playbook-matrix-registration.md:9
  38. msgid "Use matrix-registration to **create unique registration links**, which people can use to register on your Matrix server. It allows certain people (these having a special link) to register a user account, **keeping your server's registration closed (private)**."
  39. msgstr ""
  40. #: ../../../docs/configuring-playbook-matrix-registration.md:11
  41. msgid "**matrix-registration** provides 2 things:"
  42. msgstr ""
  43. #: ../../../docs/configuring-playbook-matrix-registration.md:13
  44. 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)"
  45. msgstr ""
  46. #: ../../../docs/configuring-playbook-matrix-registration.md:15
  47. msgid "**a user registration page**, where people can use these registration tokens. By default, exposed at `https://matrix.example.com/matrix-registration`"
  48. msgstr ""
  49. #: ../../../docs/configuring-playbook-matrix-registration.md:17
  50. msgid "Adjusting DNS records (optional)"
  51. msgstr ""
  52. #: ../../../docs/configuring-playbook-matrix-registration.md:19
  53. 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."
  54. msgstr ""
  55. #: ../../../docs/configuring-playbook-matrix-registration.md:21
  56. msgid "If you wish to adjust it, see the section [below](#adjusting-the-matrix-registration-url-optional) for details about DNS configuration."
  57. msgstr ""
  58. #: ../../../docs/configuring-playbook-matrix-registration.md:23
  59. msgid "Adjusting the playbook configuration"
  60. msgstr ""
  61. #: ../../../docs/configuring-playbook-matrix-registration.md:25
  62. msgid "To enable matrix-registration, add the following configuration to your `inventory/host_vars/matrix.example.com/vars.yml` file:"
  63. msgstr ""
  64. #: ../../../docs/configuring-playbook-matrix-registration.md:34
  65. msgid "Adjusting the matrix-registration URL (optional)"
  66. msgstr ""
  67. #: ../../../docs/configuring-playbook-matrix-registration.md:36
  68. 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."
  69. msgstr ""
  70. #: ../../../docs/configuring-playbook-matrix-registration.md:38
  71. msgid "Example additional configuration for your `vars.yml` file:"
  72. msgstr ""
  73. #: ../../../docs/configuring-playbook-matrix-registration.md:46
  74. msgid "If you've changed the default hostname, you may need to create a CNAME record for the matrix-registration domain (`registration.example.com`), which targets `matrix.example.com`."
  75. msgstr ""
  76. #: ../../../docs/configuring-playbook-matrix-registration.md:48
  77. msgid "When setting, replace `example.com` with your own."
  78. msgstr ""
  79. #: ../../../docs/configuring-playbook-matrix-registration.md:50
  80. msgid "Installing"
  81. msgstr ""
  82. #: ../../../docs/configuring-playbook-matrix-registration.md:52
  83. 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:"
  84. msgstr ""
  85. #: ../../../docs/configuring-playbook-matrix-registration.md:59
  86. msgid "The shortcut commands with the [`just` program](just.md) are also available: `just install-all` or `just setup-all`"
  87. msgstr ""
  88. #: ../../../docs/configuring-playbook-matrix-registration.md:61
  89. 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."
  90. msgstr ""
  91. #: ../../../docs/configuring-playbook-matrix-registration.md:63
  92. msgid "Usage"
  93. msgstr ""
  94. #: ../../../docs/configuring-playbook-matrix-registration.md:65
  95. msgid "**matrix-registration** gets exposed at `https://matrix.example.com/matrix-registration`"
  96. msgstr ""
  97. #: ../../../docs/configuring-playbook-matrix-registration.md:67
  98. 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`."
  99. msgstr ""
  100. #: ../../../docs/configuring-playbook-matrix-registration.md:69
  101. msgid "We make the most common APIs easy to use via the playbook (see below)."
  102. msgstr ""
  103. #: ../../../docs/configuring-playbook-matrix-registration.md:71
  104. msgid "Creating registration tokens"
  105. msgstr ""
  106. #: ../../../docs/configuring-playbook-matrix-registration.md:73
  107. msgid "To **create a new user registration token (link)**, use this command:"
  108. msgstr ""
  109. #: ../../../docs/configuring-playbook-matrix-registration.md:81
  110. 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."
  111. msgstr ""
  112. #: ../../../docs/configuring-playbook-matrix-registration.md:83
  113. msgid "Share the unique registration link (generated by the command above) with users to let them register on your Matrix server."
  114. msgstr ""
  115. #: ../../../docs/configuring-playbook-matrix-registration.md:85
  116. msgid "Listing registration tokens"
  117. msgstr ""
  118. #: ../../../docs/configuring-playbook-matrix-registration.md:87
  119. msgid "To **list the existing user registration tokens**, use this command:"
  120. msgstr ""
  121. #: ../../../docs/configuring-playbook-matrix-registration.md:94
  122. msgid "The shortcut command with `just` program is also available: `just run-tags list-matrix-registration-tokens`"
  123. msgstr ""