45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
---
|
|
- name: Configuration de let's encrypt
|
|
script: files/jitsi-letsencrypt.sh > jitsi-letsencrypt.log
|
|
|
|
- name: Conf Jitsi - UI en fr
|
|
lineinfile:
|
|
path: /etc/jitsi/meet/{{ inventory_hostname }}-config.js
|
|
insertafter: "[^?]// defaultLanguage: 'en'"
|
|
line: " defaultLanguage: 'fr',"
|
|
|
|
- name: Conf Jitsi - webcam en qualité medium par defaut 1/2
|
|
lineinfile:
|
|
path: /etc/jitsi/meet/{{ inventory_hostname }}-config.js
|
|
insertafter: "[^?]// resolution: 720"
|
|
line: " resolution: 360,"
|
|
|
|
- name: Conf Jitsi - webcam en qualité medium par defaut 2/2
|
|
blockinfile:
|
|
path: /etc/jitsi/meet/{{ inventory_hostname }}-config.js
|
|
marker: "// {mark} ANSIBLE MANAGED BLOCK"
|
|
insertafter: "// ratio of 16:9 with an ideal resolution of 720."
|
|
block: |
|
|
constraints: {
|
|
video: {
|
|
aspectRatio: 16 / 9,
|
|
height: {
|
|
ideal: 360,
|
|
max: 360,
|
|
min: 240
|
|
}
|
|
}
|
|
},
|
|
|
|
- name: Conf Jitsi - Désactive l'effet floutage d'arrière plan
|
|
replace:
|
|
path: /usr/share/jitsi-meet/interface_config.js
|
|
regexp: "'videobackgroundblur',"
|
|
replace: ""
|
|
|
|
- name: Conf Jitsi - Active une alerte pour les utilisateurs de Firefox
|
|
replace:
|
|
path: /usr/share/jitsi-meet/interface_config.js
|
|
regexp: "'firefox',"
|
|
replace: ""
|