mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 10:47:32 +01:00
effca48288
This probably never even worked anyway and was a leftover copy/paste from some other role. The docs (`docs/configuring-playbook-bridge-mautrix-wsproxy.md`) only talk about `matrix_mautrix_wsproxy_hostname`, which was only used via Traefik labels. The endpoint exposed via `matrix-nginx-proxy` (`/_matrix/wsproxy`) hasn't been mentioned anywhere.
21 lines
572 B
YAML
21 lines
572 B
YAML
---
|
|
|
|
- tags:
|
|
- setup-all
|
|
- setup-mautrix-wsproxy
|
|
- install-all
|
|
- install-mautrix-wsproxy
|
|
block:
|
|
- when: matrix_mautrix_wsproxy_enabled | bool
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
|
|
|
|
- when: matrix_mautrix_wsproxy_enabled | bool
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
|
|
|
|
- tags:
|
|
- setup-all
|
|
- setup-mautrix-wsproxy
|
|
block:
|
|
- when: not matrix_mautrix_wsproxy_enabled | bool
|
|
ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
|