mirror of
				https://github.com/pierre42100/ComunicAPI
				synced 2025-11-03 19:54:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			801 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			801 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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,
 | 
						|
	"maximum_number_members" => 2,
 | 
						|
	"signal_server_name" => "localhost",
 | 
						|
	"signal_server_port" => 8081,
 | 
						|
	"is_signal_server_secure" => false,
 | 
						|
	"stun_server" => "stun:127.0.0.1:3478",
 | 
						|
	"turn_server" => "turn:127.0.0.1:3478",
 | 
						|
	"turn_username" => "anonymous",
 | 
						|
	"turn_password" => "anonymous"
 | 
						|
));
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
 * Calls expiration time
 | 
						|
 * 
 | 
						|
 * The amount of time of inactivity for what the call get
 | 
						|
 * automatically deleted
 | 
						|
 */
 | 
						|
$config->set("calls_expiration", 30); |