-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCAS.config.dist.php
53 lines (44 loc) · 1.05 KB
/
CAS.config.dist.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* LICENSE: This source file is subject to version 3.01 of the GPL license
* that is available through the world-wide-web at the following URI:
* http://www.gnu.org/licenses/gpl.html. If you did not receive a copy of
* the GPL License and are unable to obtain it through the web, please
*
* @package phpScheduleIt-CAS
* @author Jason Gerfen <jason.gerfen@gmail.com>
* @license http://www.gnu.org/licenses/gpl.html GPL License 3
*/
/*
* @var {Object} CAS version specification
* @example CAS_VERSION_2_0
*/
$conf['version'] = CAS_VERSION_2_0;
/*
* @var {String} CAS service URL
*/
$conf['url'] = '';
/*
* @var {Number} CAS service tcp port
*/
$conf['port'] = 443;
/*
* @var {String} CAS service path (FQDN path component)
*/
$conf['path'] = '';
/*
* @var {String} FQDN for redirection after logout
*/
$conf['logout'] = '';
/*
* @var {String} Certificate authority file
*/
$conf['ca'] = '';
/*
* @var {String} CAS client log (optional)
*/
$conf['log'] = '';
/*
* @var {String} Email suffix (optional)
*/
$conf['email_suffix'] = '';