Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

44 lignes
1.5 KiB

  1. {#
  2. SPDX-FileCopyrightText: 2022 - 2024 Slavi Pantaleev
  3. SPDX-FileCopyrightText: 2022 Julian-Samuel Gebühr
  4. SPDX-FileCopyrightText: 2022 MDAD project contributors
  5. SPDX-License-Identifier: AGPL-3.0-or-later
  6. #}
  7. # please specify the configuration here
  8. #
  9. # these settings are mandatory
  10. # The server to connect to. Please note it must be accessible from the Docker network
  11. # example: `ldap://127.0.0.1:389`
  12. LDAP_SERVER={{ matrix_ldap_registration_proxy_ldap_uri }}
  13. # the base DN used for user creation
  14. LDAP_BASE_DN={{ matrix_ldap_registration_proxy_ldap_base_dn }}
  15. # the privileged user used for user creation including it's DN
  16. # example: `uid=admin,cn=users,cn=accounts,dc=example,dc=org`
  17. LDAP_USER={{ matrix_ldap_registration_proxy_ldap_user }}
  18. # the password of the `LDAP_USER` used for authentication
  19. LDAP_PASSWORD={{ matrix_ldap_registration_proxy_ldap_password }}
  20. # the human-readable server name of your Matrix server as used in the Matrix ID
  21. # example: `example.org`
  22. MATRIX_SERVER_NAME={{ matrix_ldap_registration_proxy_matrix_server_name }}
  23. # the url to access the Matrix server API without trailing `/`
  24. # example: `https://matrix.example.org`
  25. MATRIX_SERVER_URL={{ matrix_ldap_registration_proxy_matrix_server_url }}
  26. # these settings are optional:
  27. # Specify the port to listen on. Default to 8080
  28. LISTEN_PORT={{ matrix_ldap_registration_listen_port }}
  29. # Use this to extend the configuration with custom variables
  30. {{ matrix_ldap_registration_proxy_env_variables_extension }}