Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

42 wiersze
1.4 KiB

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