Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

50 righe
3.0 KiB

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