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

36 строки
1.3 KiB

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