blob: 563d3a0937f7f046e24e40e9679ca7a127fc78ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
$c->domain_name = "davical.example.com";
$c->sysabbr = 'DAViCal';
$c->admin_email = "example@example.com";
$c->system_name = "DAViCal-server";
$c->pg_connect[] = "dbname=davical port=5432 user=davical_app host=localhost password=PASSWORD";
/*
* Use Apache-supplied headers and believe them
*/
$c->authenticate_hook['server_auth_type'] = 'Basic';
include_once('AuthPlugins.php');
|