-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-FSU.php
35 lines (25 loc) · 967 Bytes
/
config-FSU.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
---
---
<?php
///////////////////////////////////////
// Basic Config of the phpCAS client //
///////////////////////////////////////
// Full Hostname of your CAS Server
$cas_host = 'cas.fsu.edu';
// Context of the CAS Server
$cas_context = '/cas';
// Port of your CAS server. Normally for a https server it's 443
$cas_port = 443;
$client_service_name = '{{ site.url | default: "http://localhost:8080"}}';
// Path to the ca chain that issued the cas server certificate
//$cas_server_ca_cert_path = '/path/to/cachain.pem';
//////////////////////////////////////////
// Cassowary Setting //
//////////////////////////////////////////
// Default list of users with global access
// note: rely on the fact that JSON string lists are PHP compatible
$cassowary_users = {{ site.administrators | jsonify }};
// Show or hide 19th century cassowary prints
$cassowary_show_pics = true;
// Show or hide page debug info
$cassowary_show_debug = false;