Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

72 satır
3.2 KiB

  1. ---
  2. # heisenbridge is a bouncer-style Matrix IRC bridge
  3. # Project source code URL: https://github.com/hifi/heisenbridge
  4. matrix_heisenbridge_enabled: true
  5. # renovate: datasource=docker depName=hif1/heisenbridge
  6. matrix_heisenbridge_version: 1.14.6
  7. matrix_heisenbridge_docker_image: "{{ matrix_container_global_registry_prefix }}hif1/heisenbridge:{{ matrix_heisenbridge_version }}"
  8. matrix_heisenbridge_docker_image_force_pull: "{{ matrix_heisenbridge_docker_image.endswith(':latest') }}"
  9. # Set this to your Matrix ID if you want to enforce the owner, otherwise first _local_ user becomes one
  10. matrix_heisenbridge_owner: ""
  11. # Enabling identd will bind to host port 113/TCP
  12. matrix_heisenbridge_identd_enabled: false
  13. matrix_heisenbridge_base_path: "{{ matrix_base_data_path }}/heisenbridge"
  14. matrix_heisenbridge_container_network: ""
  15. matrix_heisenbridge_container_additional_networks: "{{ matrix_heisenbridge_container_additional_networks_auto + matrix_heisenbridge_container_additional_networks_custom }}"
  16. matrix_heisenbridge_container_additional_networks_auto: []
  17. matrix_heisenbridge_container_additional_networks_custom: []
  18. # Controls how long to wait for the container to stop gracefully before killing it.
  19. # We use a small value here, because this container does not seem to handle the SIGTERM signal.
  20. matrix_heisenbridge_container_stop_grace_time_seconds: 1
  21. # A list of extra arguments to pass to the container
  22. matrix_heisenbridge_container_extra_arguments: []
  23. # List of systemd services that service depends on.
  24. matrix_heisenbridge_systemd_required_services_list: "{{ matrix_heisenbridge_systemd_required_services_list_default + matrix_heisenbridge_systemd_required_services_list_auto + matrix_heisenbridge_systemd_required_services_list_custom }}"
  25. matrix_heisenbridge_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  26. matrix_heisenbridge_systemd_required_services_list_auto: []
  27. matrix_heisenbridge_systemd_required_services_list_custom: []
  28. # List of systemd services that service wants
  29. matrix_heisenbridge_systemd_wanted_services_list: []
  30. matrix_heisenbridge_homeserver_url: ""
  31. matrix_heisenbridge_appservice_token: ''
  32. matrix_heisenbridge_homeserver_token: ''
  33. matrix_heisenbridge_config_media_url: "{{ matrix_homeserver_url }}"
  34. matrix_heisenbridge_config_displayname: "Heisenbridge"
  35. matrix_heisenbridge_registration_yaml_heisenbridge:
  36. media_url: "{{ matrix_heisenbridge_config_media_url }}"
  37. displayname: "{{ matrix_heisenbridge_config_displayname }}"
  38. # Default registration file consumed by both the homeserver and Heisenbridge.
  39. # Besides registration information, it contains configuration (see the heisenbridge key).
  40. matrix_heisenbridge_registration_yaml:
  41. id: heisenbridge
  42. url: http://matrix-heisenbridge:9898
  43. as_token: "{{ matrix_heisenbridge_appservice_token }}"
  44. hs_token: "{{ matrix_heisenbridge_homeserver_token }}"
  45. rate_limited: false
  46. sender_localpart: heisenbridge
  47. namespaces:
  48. users:
  49. - regex: '@hbirc_.*'
  50. exclusive: true
  51. aliases: []
  52. rooms: []
  53. heisenbridge: "{{ matrix_heisenbridge_registration_yaml_heisenbridge }}"
  54. matrix_heisenbridge_registration: "{{ matrix_heisenbridge_registration_yaml | from_yaml }}"