Disable third party requests by default

This commit is contained in:
Jan Beilicke 2020-05-06 22:11:56 +02:00
parent 3a957045af
commit 71dbfd8041
2 changed files with 12 additions and 2 deletions

View file

@ -103,3 +103,12 @@
backrefs: yes
tags: config
- name: "Config: Disable third party requests"
lineinfile:
path: /home/{{ docker_user }}/jitsi/conf/web/config.js
regexp: '(\s*)(//\s*)?disableThirdPartyRequests:\s*false,'
line: '\1disableThirdPartyRequests: true,'
backrefs: yes
when: jitsi_enable_third_party_requests == False
tags: config