Matrix Docker Ansible eploy
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

36 rindas
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 }}