mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-10-10 02:38:10 +02:00
- Removed duplicate Admin Manual link in README - Fixed turnserver.config.php draft return syntax - Unified onboard port handling in docker-compose and env - Updated vars to define STUN/TURN configs with correct schemas - Ensured spreed plugin config serializes clean JSON arrays Ref: https://chatgpt.com/share/68d7cfa2-7378-800f-9ecf-09b6bb768f13
14 lines
303 B
Plaintext
14 lines
303 B
Plaintext
<?php
|
|
# Activates the turn server
|
|
# @see https://nextcloud-talk.readthedocs.io/en/latest/TURN/
|
|
|
|
return [
|
|
'turn_servers' => [
|
|
[
|
|
'host' => 'coturn',
|
|
'port' => {{ NEXTCLOUD_TALK_TURN_ONBOARD_PORT }},
|
|
'secret' => 'my-secret-key',
|
|
'protocols' => 'udp,tcp'
|
|
],
|
|
],
|
|
]; |