Disable third party requests by default
This commit is contained in:
parent
3a957045af
commit
71dbfd8041
2 changed files with 12 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
# defaults file for jitsi
|
||||
docker_user: deploy
|
||||
#jitsi_letsencrypt_email:alice@host.tld
|
||||
jitsi_enable_letsencrypt: False
|
||||
jitsi_enable_letsencrypt: no
|
||||
jitsi_exposed_http_port: 8000
|
||||
jitsi_exposed_https_port: 8443
|
||||
jitsi_virtual_host: localhost
|
||||
|
@ -11,4 +11,5 @@ jitsi_timezone: Europe/Amsterdam
|
|||
jitsi_jvb_stun_servers: meet-jit-si-turnrelay.jitsi.net:443
|
||||
jitsi_web_channel_last_n: 3
|
||||
jitsi_build_latest_image_from_source: yes
|
||||
jitsi_docker_upstream_repo_url: https://github.com/jitsi/docker-jitsi-meet.git
|
||||
jitsi_docker_upstream_repo_url: https://github.com/jitsi/docker-jitsi-meet.git
|
||||
jitsi_enable_third_party_requests: no
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue