This repository has been archived by the owner on Sep 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCnertaCAS.config.php
34 lines (27 loc) · 1.81 KB
/
CnertaCAS.config.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
<?php
/**
Copyright 2013-2014 Bart Verheyde, Nick Korbel
bart.verheyde@ugent.be
This file is not part of default Booked Scheduler.
Booked Scheduler is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Booked Scheduler is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Booked Scheduler. If not, see <http://www.gnu.org/licenses/>.
*/
$conf['settings']['cas.version'] = 'S1'; // '1.0' = CAS_VERSION_1_0, '2.0 = CAS_VERSION_2_0, 'S1' = SAML_VERSION_1_1
$conf['settings']['cas.server.hostname'] = 'cas.educagri.fr/cas/'; // the hostname of the CAS server
$conf['settings']['cas.port'] = '443'; // the port the CAS server is running on
$conf['settings']['cas.server.uri'] = ''; // the URI the CAS server is responding on
$conf['settings']['cas.change.session.id'] = 'false'; // Allow phpCAS to change the session_id
$conf['settings']['email.suffix'] = '@educagri.fr'; // Email suffix to use when storing CAS user account. IE, email addresses will be saved to Booked Scheduler as username@yourdomain.com
$conf['settings']['cas.logout.servers'] = 'cas.educagri.fr/cas/logout'; // Comma separated list of servers to use for logout. Leave blank to not use cas logout servers
$conf['settings']['cas.certificates'] = ''; // Path to certificate to use for CAS. Leave blank if no certificate should be used
$conf['settings']['cas.debug.enabled'] = 'false';
$conf['settings']['cas.debug.file'] = '/tmp/phpcas.log';
?>