From 6022585192938ace40528a0ebb123c3e7662f1d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Thu, 30 Jul 2026 09:32:17 +0200 Subject: [PATCH] added cmd to setup --- .../setup_talk_with_hpb.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/playbooks/linux/ubuntu-server/nextcloud_full_deployment/setup_talk_with_hpb.yml b/playbooks/linux/ubuntu-server/nextcloud_full_deployment/setup_talk_with_hpb.yml index 0ddb77a..e56fd8a 100644 --- a/playbooks/linux/ubuntu-server/nextcloud_full_deployment/setup_talk_with_hpb.yml +++ b/playbooks/linux/ubuntu-server/nextcloud_full_deployment/setup_talk_with_hpb.yml @@ -52,9 +52,9 @@ changed_when: "'already installed' not in install_result.stdout" failed_when: install_result.rc != 0 and 'already installed' not in install_result.stdout - - name: Configure Talk app's High Performance Backend (HPB) signaling server + - name: Configure Talk app's High Performance Backend (HPB) STUN server ansible.builtin.command: > - sudo -u www-data php occ talk:signaling:add wss://{{ nc_talk_hpb_domain }} {{ nc_talk_hpb_signaling_secret }} + sudo -u www-data php occ talk:stun:add {{ nc_talk_hpb_domain }}:443 args: chdir: "{{ nextcloud_install_dir }}" changed_when: true @@ -65,3 +65,11 @@ args: chdir: "{{ nextcloud_install_dir }}" changed_when: true + + - name: Configure Talk app's High Performance Backend (HPB) signaling server + ansible.builtin.command: > + sudo -u www-data php occ talk:signaling:add wss://{{ nc_talk_hpb_domain }} {{ nc_talk_hpb_signaling_secret }} + args: + chdir: "{{ nextcloud_install_dir }}" + changed_when: true +