mirror of
https://github.com/pierre42100/ComunicAPI
synced 2025-06-19 08:35:18 +00:00
Can get calls configuration
This commit is contained in:
29
config/calls.php
Normal file
29
config/calls.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* Calls configuration file
|
||||
*
|
||||
* @author Pierre HUBERT
|
||||
*/
|
||||
|
||||
/**
|
||||
* Calls through clients are disabled by default.
|
||||
*/
|
||||
$config->set("calls", false);
|
||||
|
||||
/**
|
||||
* Copy the lines of code below to the overwrite.php file
|
||||
* if you would like to enable calls on your instance of
|
||||
* Comunic
|
||||
*
|
||||
*/
|
||||
/*
|
||||
$config->set("calls", array(
|
||||
"enabled" => true,
|
||||
"signal_server_name" => "localhost",
|
||||
"signal_server_port" => 8081,
|
||||
"stun_server" => "stun:127.0.0.1:3478",
|
||||
"turn_server" => "turn:127.0.0.1:3478",
|
||||
"turn_username" => "anonymous",
|
||||
"turn_password" => "anonymous"
|
||||
));
|
||||
*/
|
Reference in New Issue
Block a user