add coturn support for raspberry pi

This commit is contained in:
Horvath Gergely
2020-02-19 22:18:17 +01:00
parent d8b31afd1a
commit 7c4a86bc6b
3 changed files with 23 additions and 3 deletions

View File

@ -28,6 +28,7 @@ matrix_base_data_path_mode: "750"
matrix_static_files_base_path: "{{ matrix_base_data_path }}/static-files"
matrix_docker_src_files_path: "{{ matrix_base_data_path }}/docker-src"
matrix_docker_synapse_src_files_path: "{{ matrix_docker_src_files_path }}/synapse"
matrix_docker_coturn_src_files_path: "{{ matrix_docker_src_files_path }}/coturn"
matrix_homeserver_url: "https://{{ matrix_server_fqn_matrix }}"

View File

@ -22,8 +22,9 @@
group: "{{ matrix_user_username }}"
with_items:
- "{{ matrix_base_data_path }}"
- "{{ matrix_docker_src_files_path }}"
- "{{ matrix_docker_synapse_src_files_path }}"
- { src: "{{ matrix_docker_src_files_path }}", when: "{{ matrix_raspberry_pi }}" }
- { src: "{{ matrix_docker_synapse_src_files_path }}", when: "{{ matrix_raspberry_pi }}" }
- { src: "{{ matrix_docker_coturn_src_files_path }}", when: "{{ matrix_coturn_enabled }}"}
# `docker_network` doesn't work as expected when the given network
# is a substring of a network that already exists.