Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

51 linhas
3.2 KiB

  1. ---
  2. # matrix-registration-bot creates and manages registration tokens for a matrix server
  3. # Project source code URL: https://github.com/moan0s/matrix-registration-bot
  4. matrix_bot_matrix_registration_bot_enabled: true
  5. matrix_bot_matrix_registration_bot_container_image_self_build: false
  6. matrix_bot_matrix_registration_bot_docker_repo: "https://github.com/moan0s/matrix-registration-bot.git"
  7. matrix_bot_matrix_registration_bot_docker_repo_version: "{{ matrix_bot_matrix_registration_bot_version if matrix_bot_matrix_registration_bot_version != 'latest' else 'main' }}"
  8. matrix_bot_matrix_registration_bot_docker_src_files_path: "{{ matrix_bot_matrix_registration_bot_base_path }}/docker-src"
  9. matrix_bot_matrix_registration_bot_version: latest
  10. matrix_bot_matrix_registration_bot_docker_image: "{{ matrix_container_global_registry_prefix }}moanos/matrix-registration-bot:{{ matrix_bot_matrix_registration_bot_version }}"
  11. matrix_bot_matrix_registration_bot_docker_image_force_pull: "{{ matrix_bot_matrix_registration_bot_docker_image.endswith(':latest') }}"
  12. matrix_bot_matrix_registration_bot_base_path: "{{ matrix_base_data_path }}/matrix-registration-bot"
  13. matrix_bot_matrix_registration_bot_config_path: "{{ matrix_bot_matrix_registration_bot_base_path }}/config"
  14. matrix_bot_matrix_registration_bot_data_path: "{{ matrix_bot_matrix_registration_bot_base_path }}/data"
  15. matrix_bot_matrix_registration_bot_bot_server: "https://{{ matrix_server_fqn_matrix }}"
  16. matrix_bot_matrix_registration_bot_api_base_url: "https://{{ matrix_server_fqn_matrix }}"
  17. # The access token that the bot uses to communicate in Matrix chats
  18. # This does not necessarily need to be a privileged (admin) access token.
  19. matrix_bot_matrix_registration_bot_bot_access_token: ''
  20. # The access token that the bot uses to call the Matrix API for creating registration tokens.
  21. # This needs to be a privileged (admin) access token.
  22. # By default, we assume `matrix_bot_matrix_registration_bot_bot_access_token` is such a privileged token and we use it as is.
  23. # If necessary, you can define your own other access token here, which might even be for a different Matrix user.
  24. matrix_bot_matrix_registration_bot_api_token: "{{ matrix_bot_matrix_registration_bot_bot_access_token }}"
  25. matrix_bot_matrix_registration_bot_logging_level: info
  26. matrix_bot_matrix_registration_environment_variables_extension: ''
  27. # A list of extra arguments to pass to the container
  28. matrix_bot_matrix_registration_bot_container_extra_arguments: []
  29. # List of systemd services that matrix-bot-matrix-registration-bot.service depends on
  30. matrix_bot_matrix_registration_bot_systemd_required_services_list: ['docker.service']
  31. # List of systemd services that matrix-bot-matrix-registration-bot.service wants
  32. matrix_bot_matrix_registration_bot_systemd_wanted_services_list: []
  33. # The bot's username. This user needs to be created manually beforehand.
  34. # Also see `matrix_bot_matrix_registration_bot_user_password`.
  35. matrix_bot_matrix_registration_bot_matrix_user_id_localpart: "bot.matrix-registration-bot"
  36. matrix_bot_matrix_registration_bot_matrix_user_id: '@{{ matrix_bot_matrix_registration_bot_matrix_user_id_localpart }}:{{ matrix_domain }}'
  37. matrix_bot_matrix_registration_bot_matrix_homeserver_url: "{{ matrix_homeserver_container_url }}"