|
|
|
@@ -2100,37 +2100,29 @@ matrix_bot_go_neb_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http' |
|
|
|
|
|
|
|
matrix_bot_go_neb_hostname: "{{ matrix_server_fqn_bot_go_neb }}" |
|
|
|
|
|
|
|
matrix_bot_go_neb_container_network: "{{ matrix_nginx_proxy_container_network if matrix_playbook_reverse_proxy_type == 'playbook-managed-nginx' else 'matrix-bot-go-neb' }}" |
|
|
|
matrix_bot_go_neb_systemd_required_services_list_auto: | |
|
|
|
{{ |
|
|
|
matrix_addons_homeserver_systemd_services_list |
|
|
|
}} |
|
|
|
|
|
|
|
matrix_bot_go_neb_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '4050') if matrix_playbook_service_host_bind_interface_prefix else '' }}" |
|
|
|
|
|
|
|
matrix_bot_go_neb_container_network: "{{ matrix_addons_container_network }}" |
|
|
|
|
|
|
|
matrix_bot_go_neb_container_additional_networks: | |
|
|
|
{{ |
|
|
|
( |
|
|
|
([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else []) |
|
|
|
+ |
|
|
|
([matrix_homeserver_container_network] if matrix_homeserver_container_network != matrix_bot_go_neb_container_network else []) |
|
|
|
([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network]) |
|
|
|
+ |
|
|
|
([devture_postgres_container_network] if devture_postgres_enabled and devture_postgres_container_network != matrix_bot_go_neb_container_network else []) |
|
|
|
([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_bot_go_neb_container_labels_traefik_enabled else []) |
|
|
|
) | unique |
|
|
|
}} |
|
|
|
|
|
|
|
matrix_bot_go_neb_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '4050') if matrix_playbook_service_host_bind_interface_prefix else '' }}" |
|
|
|
|
|
|
|
matrix_bot_go_neb_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}" |
|
|
|
matrix_bot_go_neb_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}" |
|
|
|
matrix_bot_go_neb_container_labels_traefik_entrypoints: "{{ devture_traefik_entrypoint_primary }}" |
|
|
|
matrix_bot_go_neb_container_labels_traefik_tls_certResolver: "{{ devture_traefik_certResolver_primary }}" |
|
|
|
|
|
|
|
matrix_bot_go_neb_systemd_required_services_list: | |
|
|
|
{{ |
|
|
|
['docker.service'] |
|
|
|
+ |
|
|
|
['matrix-' + matrix_homeserver_implementation + '.service'] |
|
|
|
+ |
|
|
|
([devture_postgres_identifier + '.service'] if devture_postgres_enabled else []) |
|
|
|
+ |
|
|
|
(['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else []) |
|
|
|
}} |
|
|
|
|
|
|
|
###################################################################### |
|
|
|
# |
|
|
|
# /matrix-bot-go-neb |
|
|
|
|