ctucx.git: tinyDAV

[php] Cal-/ CardDAV server with a simple web-GUI based on SabreDAV

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 <?php
	// Server base URL
	$pluginconfig['base_url']=(empty($_SERVER['HTTPS']) ? 'http' : 'https').'://my.server.com:8080';

	// Default values are usually OK
	//  for Davical:
	$pluginconfig['request']='/caldav.php';	// change only if your Davical is not installed into server root directory
	//  for Lion server:
	//$pluginconfig['request']='/principals/users';

	$pluginconfig['timeout']=30;
?>