Matrix Docker Ansible eploy
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

24 righe
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 }}"