Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

61 строка
3.3 KiB

  1. ---
  2. # Cactus Comments is a federated comment system built on Matrix
  3. # Project source code URL: https://gitlab.com/cactus-comments/cactus-appservice
  4. # Project source code URL: https://gitlab.com/cactus-comments/cactus-client
  5. matrix_cactus_comments_enabled: true
  6. matrix_cactus_comments_serve_client_enabled: true
  7. matrix_cactus_comments_container_image_self_build: false
  8. matrix_cactus_comments_docker_repo: "https://gitlab.com/cactus-comments/cactus-appservice.git"
  9. matrix_cactus_comments_docker_repo_version: "{{ matrix_cactus_comments_version if matrix_cactus_comments_version != 'latest' else 'main' }}"
  10. matrix_cactus_comments_docker_src_files_path: "{{ matrix_cactus_comments_base_path }}/docker-src"
  11. matrix_cactus_comments_base_path: "{{ matrix_base_data_path }}/cactus-comments"
  12. matrix_cactus_comments_container_tmp_path: "{{ matrix_cactus_comments_base_path }}/tmp"
  13. matrix_cactus_comments_client_path: "{{ matrix_cactus_comments_base_path }}/client"
  14. matrix_cactus_comments_client_file_permissions: "0644"
  15. matrix_cactus_comments_app_service_config_file: "{{ matrix_cactus_comments_base_path }}/cactus_appservice.yaml"
  16. matrix_cactus_comments_app_service_env_file: "{{ matrix_cactus_comments_base_path }}/cactus.env"
  17. matrix_cactus_comments_as_token: ''
  18. matrix_cactus_comments_hs_token: ''
  19. matrix_cactus_comments_homeserver_url: "{{ matrix_homeserver_container_url }}"
  20. matrix_cactus_comments_user_id: "bot.cactusbot"
  21. matrix_cactus_comments_tmp_directory_size_mb: 1
  22. matrix_cactus_comments_container_port: 5000
  23. matrix_cactus_comments_version: latest
  24. matrix_cactus_comments_docker_image: "{{ matrix_container_global_registry_prefix }}cactuscomments/cactus-appservice:{{ matrix_cactus_comments_version }}"
  25. matrix_cactus_comments_docker_image_force_pull: "{{ matrix_cactus_comments_docker_image.endswith(':latest') }}"
  26. # matrix_cactus_comments_client_version specifies the version of the cactus-client release to use.
  27. # For available versions, see: https://gitlab.com/cactus-comments/cactus-client/-/releases
  28. # Also see: `matrix_cactus_comments_client_local_dir`
  29. matrix_cactus_comments_client_version: "0.13.0"
  30. # matrix_cactus_comments_client_local_dir specifies a local directory (on the Ansible controller, not on the remote server) with cactus-client files to use.
  31. # This is an alternative to `matrix_cactus_comments_client_version`, to be used when you'd like to
  32. # provide the files locally / manually.
  33. matrix_cactus_comments_client_local_dir: ''
  34. # matrix_cactus_comments_client_nginx_path specifies the path where nginx can access the client files.
  35. # The default value assumes a container setup. If you're running nginx without a container, consider adjusting this path
  36. matrix_cactus_comments_client_nginx_path: "/cactus-comments/"
  37. # matrix_cactus_comments_client_endpoint specifies where nginx will serve the files in nginx is enabled
  38. matrix_cactus_comments_client_endpoint: "/cactus-comments/"
  39. # List of systemd services that matrix-cactus-comments.service depends on
  40. matrix_bot_cactus_comments_systemd_required_services_list: ['docker.service']
  41. # List of systemd services that matrix-cactus-comments.service wants
  42. matrix_bot_cactus_comments_systemd_wanted_services_list: []
  43. # A list of extra arguments to pass to the container
  44. matrix_cactus_comments_container_extra_arguments: []
  45. matrix_cactus_comments_environment_variables_extension: ''