Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

24 lignes
716 B

  1. ---
  2. ---
  3. # Update the .well-known/matrix/client file with Element Call config
  4. - name: Ensure .well-known directory exists
  5. ansible.builtin.file:
  6. path: "{{ matrix_element_call_well_known_client_path | dirname }}"
  7. state: directory
  8. mode: 0755
  9. - name: Update .well-known/matrix/client file with Element Call config
  10. ansible.builtin.blockinfile:
  11. path: "{{ matrix_element_call_well_known_client_path }}"
  12. block: |
  13. "org.matrix.msc4143.rtc_foci": [
  14. {
  15. "type": "livekit",
  16. "livekit_service_url": "{{ matrix_element_call_jwt_service_url }}"
  17. }
  18. ]
  19. create: yes
  20. mode: '0644'
  21. owner: "{{ matrix_user_username }}"
  22. group: "{{ matrix_user_groupname }}"