generic_conf.inc 397 B

123456789101112
  1. <?php
  2. // Server base URL
  3. $pluginconfig['base_url']=(empty($_SERVER['HTTPS']) ? 'http' : 'https').'://my.server.com:8080';
  4. // Default values are usually OK
  5. // for Davical:
  6. $pluginconfig['request']='/caldav.php'; // change only if your Davical is not installed into server root directory
  7. // for Lion server:
  8. //$pluginconfig['request']='/principals/users';
  9. $pluginconfig['timeout']=30;
  10. ?>