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.
 
 

57 wiersze
3.5 KiB

  1. ---
  2. # matrix_ldap_registration_proxy - Want to build a large-scale Matrix server using external registration on LDAP?
  3. # Project source code URL: https://gitlab.com/activism.international/matrix_ldap_registration_proxy
  4. matrix_ldap_registration_proxy_enabled: true
  5. matrix_ldap_registration_proxy_container_image_self_build_repo: "https://gitlab.com/activism.international/matrix_ldap_registration_proxy.git"
  6. matrix_ldap_registration_proxy_container_image_self_build_branch: "{{ matrix_ldap_registration_proxy_version }}"
  7. matrix_ldap_registration_proxy_version: "296246afc6a9b3105e67fcf6621cf05ebc74b873"
  8. matrix_ldap_registration_proxy_base_path: "{{ matrix_base_data_path }}/matrix_ldap_registration_proxy"
  9. # We need the docker src directory to be named matrix_ldap_registration_proxy.
  10. matrix_ldap_registration_proxy_docker_src_files_path: "{{ matrix_ldap_registration_proxy_base_path }}/docker-src/matrix_ldap_registration_proxy"
  11. matrix_ldap_registration_proxy_config_path: "{{ matrix_ldap_registration_proxy_base_path }}/config"
  12. matrix_ldap_registration_proxy_ldap_uri: ""
  13. matrix_ldap_registration_proxy_ldap_base_dn: ""
  14. matrix_ldap_registration_proxy_ldap_user: ""
  15. matrix_ldap_registration_proxy_ldap_password: ""
  16. matrix_ldap_registration_proxy_matrix_server_name: "{{ matrix_domain }}"
  17. matrix_ldap_registration_proxy_matrix_server_url: "https://{{ matrix_server_fqn_matrix }}"
  18. # Controls whether the self-check feature should validate SSL certificates.
  19. matrix_matrix_ldap_registration_proxy_self_check_validate_certificates: true
  20. matrix_ldap_registration_proxy_container_port: 8080
  21. # Controls whether the matrix_ldap_registration_proxy container exposes its HTTP port (tcp/{{ matrix_ldap_registration_proxy_container_port }} in the container).
  22. #
  23. # Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8080"), or empty string to not expose.
  24. matrix_ldap_registration_proxy_container_http_host_bind_port: '8585'}'
  25. # `matrix_ldap_registration_proxy_container_http_host_bind_port_number_raw` contains the raw port number extracted from `matrix_ldap_registration_proxy_container_http_host_bind_port`,
  26. # which can contain values like this: ('1234', '127.0.0.1:1234', '0.0.0.0:1234')
  27. matrix_ldap_registration_proxy_container_http_host_bind_port_number_raw: "{{ '' if matrix_ldap_registration_proxy_container_http_host_bind_port == '' else (matrix_ldap_registration_proxy_container_http_host_bind_port.split(':')[1] if ':' in matrix_ldap_registration_proxy_container_http_host_bind_port else matrix_ldap_registration_proxy_container_http_host_bind_port) }}"
  28. matrix_ldap_registration_proxy_registration_addr_with_container: "matrix-ldap_registration-proxy:{{ matrix_ldap_registration_proxy_container_http_host_bind_port_number_raw }}"
  29. matrix_ldap_registration_proxy_registration_addr_sans_container: "127.0.0.1:{{ matrix_ldap_registration_proxy_container_http_host_bind_port_number_raw }}"
  30. # A list of extra arguments to pass to the container
  31. matrix_ldap_registration_proxy_container_extra_arguments: []
  32. # List of systemd services that matrix_ldap_registration_proxy.service depends on
  33. matrix_ldap_registration_proxy_systemd_required_services_list: ['docker.service']
  34. # List of systemd services that matrix_ldap_registration_proxy.service wants
  35. matrix_ldap_registration_proxy_systemd_wanted_services_list: []
  36. # Additional environment variables to pass to the LDAP proxy environment variables.
  37. #
  38. # Example:
  39. # matrix_ldap_registration_proxy_env_variables_extension: |
  40. # KEY=value
  41. matrix_ldap_registration_proxy_env_variables_extension: ''