Restore matrix-corporal functionality when matrix-nginx-proxy is not involved
This commit is contained in:
@ -5,21 +5,54 @@ traefik.enable=true
|
||||
traefik.docker.network={{ matrix_corporal_container_labels_traefik_docker_network }}
|
||||
{% endif %}
|
||||
|
||||
{# HTTP API #}
|
||||
traefik.http.services.matrix-corporal-gateway.loadbalancer.server.port=41080
|
||||
traefik.http.services.matrix-corporal-api.loadbalancer.server.port=41081
|
||||
|
||||
{#
|
||||
Corporal API (/_matrix/corporal)
|
||||
#}
|
||||
{% if matrix_corporal_container_labels_api_enabled %}
|
||||
traefik.http.routers.matrix-corporal-api.rule={{ matrix_corporal_container_labels_api_traefik_rule }}
|
||||
|
||||
{% if matrix_corporal_container_labels_api_traefik_priority | int > 0 %}
|
||||
traefik.http.routers.matrix-corporal-api.priority={{ matrix_corporal_container_labels_api_traefik_priority }}
|
||||
{% endif %}
|
||||
|
||||
traefik.http.routers.matrix-corporal-api.service=matrix-corporal-api
|
||||
traefik.http.routers.matrix-corporal-api.entrypoints={{ matrix_corporal_container_labels_api_traefik_entrypoints }}
|
||||
|
||||
traefik.http.routers.matrix-corporal-api.tls={{ matrix_corporal_container_labels_api_traefik_tls | to_json }}
|
||||
{% if matrix_corporal_container_labels_api_traefik_tls %}
|
||||
traefik.http.routers.matrix-corporal-api.tls.certResolver={{ matrix_corporal_container_labels_api_traefik_tls_certResolver }}
|
||||
{% endif %}
|
||||
traefik.http.services.matrix-corporal-api.loadbalancer.server.port=41081
|
||||
|
||||
{% endif %}
|
||||
{#
|
||||
/Corporal API (/_matrix/corporal)
|
||||
#}
|
||||
|
||||
{#
|
||||
Matrix Client-Server API (/_matrix)
|
||||
#}
|
||||
{% if matrix_corporal_container_labels_matrix_client_api_enabled %}
|
||||
traefik.http.routers.matrix-corporal-matrix-client-api.rule={{ matrix_corporal_container_labels_matrix_client_api_traefik_rule }}
|
||||
|
||||
{% if matrix_corporal_container_labels_matrix_client_api_traefik_priority | int > 0 %}
|
||||
traefik.http.routers.matrix-corporal-matrix-client-api.priority={{ matrix_corporal_container_labels_matrix_client_api_traefik_priority }}
|
||||
{% endif %}
|
||||
|
||||
traefik.http.routers.matrix-corporal-matrix-client-api.service=matrix-corporal-gateway
|
||||
traefik.http.routers.matrix-corporal-matrix-client-api.entrypoints={{ matrix_corporal_container_labels_matrix_client_api_traefik_entrypoints }}
|
||||
|
||||
traefik.http.routers.matrix-corporal-matrix-client-api.tls={{ matrix_corporal_container_labels_matrix_client_api_traefik_tls | to_json }}
|
||||
{% if matrix_corporal_container_labels_matrix_client_api_traefik_tls %}
|
||||
traefik.http.routers.matrix-corporal-matrix-client-api.tls.certResolver={{ matrix_corporal_container_labels_matrix_client_api_traefik_tls_certResolver }}
|
||||
{% endif %}
|
||||
|
||||
{% endif %}
|
||||
{#
|
||||
/Matrix Client-Server API (/_matrix)
|
||||
#}
|
||||
|
||||
{% endif %}
|
||||
|
||||
|
Reference in New Issue
Block a user