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.
 
 

82 wiersze
4.4 KiB

  1. ---
  2. # Set this to the display name for ansible used in Output e.g. fail_msg
  3. matrix_user_verification_service_ansible_name: "Matrix User Verification Service"
  4. # Enable by default. This is overwritten in provided group vars.
  5. matrix_user_verification_service_enabled: true
  6. # Fix version tag
  7. matrix_user_verification_service_version: "v2.0.0"
  8. # Paths
  9. matrix_user_verification_service_base_path: "{{ matrix_base_data_path }}/user-verification-service"
  10. # We need the docker src directory to be named user_verification_service. See: https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/588
  11. matrix_user_verification_service_docker_src_files_path: "{{ matrix_user_verification_service_base_path }}/docker-src/user-verification-service"
  12. matrix_user_verification_service_config_path: "{{ matrix_user_verification_service_base_path }}/config"
  13. matrix_user_verification_service_config_env_file: "{{ matrix_user_verification_service_config_path }}/.env"
  14. # Docker
  15. matrix_user_verification_service_docker_image_name_prefix: "{{ matrix_container_global_registry_prefix }}"
  16. matrix_user_verification_service_docker_image: "{{ matrix_user_verification_service_docker_image_name_prefix }}matrixdotorg/matrix-user-verification-service:{{ matrix_user_verification_service_version }}"
  17. matrix_user_verification_service_docker_image_force_pull: "{{ matrix_user_verification_service_docker_image.endswith(':latest') }}"
  18. matrix_user_verification_service_container_name: "matrix-user-verification-service"
  19. # Normally this would run on port 3000 however that may conflict with grafana. It is thus advised to change this port.
  20. #matrix_user_verification_service_container_http_host_bind_port:
  21. matrix_user_verification_service_container_extra_arguments: []
  22. # Systemd
  23. matrix_user_verification_service_systemd_required_services_list: []
  24. matrix_user_verification_service_systemd_wanted_services_list: []
  25. matrix_user_verification_service_systemd_service_basename: "matrix-user-verification-service"
  26. matrix_user_verification_service_systemd_service_name: "{{ matrix_user_verification_service_systemd_service_basename }}.service"
  27. # Matrix User Verification Service Configuration
  28. ## REQUIRED
  29. # Homeserver client API admin token (synapse only)- Required for the service to verify room membership
  30. # matrix_user_verification_service_uvs_access_token:
  31. # homeserver client api url
  32. matrix_user_verification_service_uvs_homeserver_url: "{{ matrix_homeserver_container_url }}"
  33. # disable check for non private ip range of homeserver. e.g. set to `true` if your homeserver domain resolves to a private ip.
  34. matrix_user_verification_service_uvs_disable_ip_blacklist: false
  35. ## OPTIONAL
  36. # Require an Auth-Token with API calls. If set to false, UVS will reply to any API call.
  37. # The Auth-Token is defined via: matrix_user_verification_service_uvs_auth_token
  38. matrix_user_verification_service_uvs_require_auth: true
  39. # Auth token to protect the API
  40. # If enabled any calls to the provided API endpoints need have the header "Authorization: Bearer TOKEN".
  41. # A Token will be derived from matrix_homeserver_generic_secret_key in group_vars/matrix_servers
  42. matrix_user_verification_service_uvs_auth_token: ''
  43. # Pin UVS to only check openId Tokens for the matrix_server_name configured by this playbook.
  44. matrix_user_verification_service_uvs_pin_openid_verify_server_name: true
  45. # Matrix server name to verify OpenID tokens against.
  46. # This is not the homeserverURL, but rather the domain in the matrix "user ID"
  47. # UVS can also be instructed to verify against the Matrix server name passed in the token, to enable set to ""
  48. matrix_user_verification_service_uvs_openid_verify_server_name: "{{ matrix_domain }}"
  49. # Log level
  50. # See choices here: https://github.com/winstonjs/winston#logging-levels
  51. matrix_user_verification_service_uvs_log_level: info
  52. ######################################################################
  53. ##### #####
  54. ##### Variables used in this role which are not set by this role #####
  55. ##### #####
  56. ######################################################################
  57. # matrix_user_username
  58. # matrix_user_groupname
  59. # matrix_user_uid
  60. # matrix_user_gid
  61. # matrix_container_global_registry_prefix
  62. # matrix_docker_network
  63. # devture_systemd_docker_base_systemd_path
  64. # devture_systemd_docker_base_systemd_unit_home_path
  65. # devture_systemd_docker_base_host_command_sh
  66. # devture_systemd_docker_base_host_command_docker