Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

80 řádky
4.6 KiB

  1. ---
  2. # matrix-user-verification-service - Service to verify details of a user based on an Open ID token
  3. # Project source code URL: https://github.com/matrix-org/matrix-user-verification-service
  4. # Set this to the display name for ansible used in Output e.g. fail_msg
  5. matrix_user_verification_service_ansible_name: "Matrix User Verification Service"
  6. # Enable by default. This is overwritten in provided group vars.
  7. matrix_user_verification_service_enabled: true
  8. matrix_user_verification_service_container_image_self_build: "{{ matrix_architecture != 'amd64' }}"
  9. matrix_user_verification_service_container_image_self_build_repo: "https://github.com/matrix-org/matrix-user-verification-service"
  10. matrix_user_verification_service_container_image_self_build_branch: "{{ 'master' if matrix_registration_version == 'latest' else matrix_user_verification_service_version }}"
  11. # Fix version tag
  12. # renovate: datasource=docker depName=matrixdotorg/matrix-user-verification-service
  13. matrix_user_verification_service_version: "v3.0.0"
  14. # Paths
  15. matrix_user_verification_service_base_path: "{{ matrix_base_data_path }}/user-verification-service"
  16. matrix_user_verification_service_config_path: "{{ matrix_user_verification_service_base_path }}/config"
  17. matrix_user_verification_service_config_env_file: "{{ matrix_user_verification_service_config_path }}/.env"
  18. matrix_user_verification_service_docker_src_files_path: "{{ matrix_user_verification_service_base_path }}/docker-src"
  19. # Docker
  20. matrix_user_verification_service_docker_image_name_prefix: "{{ matrix_container_global_registry_prefix }}"
  21. matrix_user_verification_service_docker_image: "{{ matrix_user_verification_service_docker_image_name_prefix }}matrixdotorg/matrix-user-verification-service:{{ matrix_user_verification_service_version }}"
  22. matrix_user_verification_service_docker_image_force_pull: "{{ matrix_user_verification_service_docker_image.endswith(':latest') }}"
  23. # The base container network. It will be auto-created by this role if it doesn't exist already.
  24. matrix_user_verification_service_container_network: ""
  25. # A list of additional container networks that the container would be connected to.
  26. # The role does not create these networks, so make sure they already exist.
  27. # Use this to expose this container to another reverse proxy, which runs in a different container network.
  28. matrix_user_verification_service_container_additional_networks: []
  29. matrix_user_verification_service_container_name: "matrix-user-verification-service"
  30. # This will be set in group vars
  31. matrix_user_verification_service_container_http_host_bind_port: ''
  32. matrix_user_verification_service_container_extra_arguments: []
  33. # Systemd
  34. matrix_user_verification_service_systemd_required_services_list: []
  35. matrix_user_verification_service_systemd_wanted_services_list: []
  36. matrix_user_verification_service_systemd_service_basename: "matrix-user-verification-service"
  37. matrix_user_verification_service_systemd_service_name: "{{ matrix_user_verification_service_systemd_service_basename }}.service"
  38. # Matrix User Verification Service Configuration
  39. ## REQUIRED
  40. # Homeserver client API admin token (synapse only)- Required for the service to verify room membership
  41. matrix_user_verification_service_uvs_access_token: ''
  42. # homeserver client api url
  43. matrix_user_verification_service_uvs_homeserver_url: ""
  44. # disable check for non private ip range of homeserver. e.g. set to `true` if your homeserver domain resolves to a private ip.
  45. matrix_user_verification_service_uvs_disable_ip_blacklist: false
  46. ## OPTIONAL
  47. # Require an Auth-Token with API calls. If set to false, UVS will reply to any API call.
  48. # The Auth-Token is defined via: matrix_user_verification_service_uvs_auth_token
  49. matrix_user_verification_service_uvs_require_auth: true
  50. # Auth token to protect the API
  51. # If enabled any calls to the provided API endpoints need have the header "Authorization: Bearer TOKEN".
  52. # A Token will be derived from matrix_homeserver_generic_secret_key in group_vars/matrix_servers
  53. matrix_user_verification_service_uvs_auth_token: ''
  54. # Pin UVS to only check openId Tokens for the matrix_server_name configured by this playbook.
  55. matrix_user_verification_service_uvs_pin_openid_verify_server_name: true
  56. # Matrix server name to verify OpenID tokens against.
  57. # This is not the homeserverURL, but rather the domain in the Matrix "user ID"
  58. # UVS can also be instructed to verify against the Matrix server name passed in the token, to enable set to ""
  59. matrix_user_verification_service_uvs_openid_verify_server_name: "{{ matrix_domain }}"
  60. # Log level
  61. # See choices here: https://github.com/winstonjs/winston#logging-levels
  62. matrix_user_verification_service_uvs_log_level: info