Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

22 строки
625 B

  1. ---
  2. ---
  3. # Create the element.json file to point to Element Call
  4. - name: Ensure .well-known/element directory exists
  5. ansible.builtin.file:
  6. path: "{{ matrix_element_call_well_known_element_path | dirname }}"
  7. state: directory
  8. mode: 0755
  9. - name: Create or update the element.json file with Element Call config
  10. ansible.builtin.copy:
  11. dest: "{{ matrix_element_call_well_known_element_path }}"
  12. content: |
  13. {
  14. "call": {
  15. "widget_url": "{{ matrix_element_call_base_url }}"
  16. }
  17. }
  18. mode: '0644'
  19. owner: "{{ matrix_user_username }}"
  20. group: "{{ matrix_user_groupname }}"