Updates Jitsi to stable-8960-1

This commit is contained in:
Jan Beilicke 2023-10-30 00:56:32 +01:00
parent f25cf1e12e
commit 94ad19758b
4 changed files with 104 additions and 34 deletions

View file

@ -81,21 +81,6 @@
that:
- "output.services['web']['jitsi_web_1'].state.running"
- name: "Test whether Jitsi is healthy from the outside"
when: not ansible_check_mode
become: false
uri:
url: https://{{ jitsi_virtual_host }}
return_content: yes
timeout: 300
validate_certs: no
register: url_check
delegate_to: localhost
until: "'<title>Jitsi Meet' in url_check.content"
retries: 5
delay: 10
tags: health
- name: "Config: Set channelLastN"
lineinfile:
path: /home/{{ docker_user }}/jitsi/conf/web/config.js
@ -113,3 +98,17 @@
when: jitsi_enable_third_party_requests == False
tags: config
- name: "Test whether Jitsi is healthy from the outside"
when: not ansible_check_mode
become: false
uri:
url: "{{ jitsi_public_url }}"
return_content: yes
timeout: 300
validate_certs: no
register: url_check
delegate_to: localhost
until: "'<title>Jitsi Meet' in url_check.content"
retries: 5
delay: 10
tags: health