mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-02 07:14:15 +02:00
11 lines
258 B
Plaintext
11 lines
258 B
Plaintext
<?php
|
|
# Activates the turn server
|
|
# @see https://nextcloud-talk.readthedocs.io/en/latest/TURN/
|
|
return 'turn_servers' => [
|
|
[
|
|
'host' => 'coturn',
|
|
'port' => 3478,
|
|
'secret' => 'my-secret-key',
|
|
'protocols' => 'udp,tcp'
|
|
]
|
|
]; |