-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.example.xml
More file actions
27 lines (25 loc) · 944 Bytes
/
config.example.xml
File metadata and controls
27 lines (25 loc) · 944 Bytes
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
<Config>
<!-- Web information -->
<Address>127.0.0.1:8080</Address>
<!-- Used to configure various relative URLs.
For example, given a Base URL of example.com,
ias.example.com, ecs.example.com, etc. will be
returned as a part of configuration. -->
<BaseURL>example.com</BaseURL>
<!-- Database configuration -->
<SQLAddress>127.0.0.1:5432</SQLAddress>
<SQLUser>username</SQLUser>
<SQLPass>password</SQLPass>
<SQLDB>wiisoap</SQLDB>
<!-- Set to true to enable response debugging.
Can be extremely verbose. -->
<Debug>true</Debug>
<!-- Set to true to ignore authentication checks.
This is useful when testing CAS directly.
It is only functional when debug is enabled. -->
<NoAuth>false</NoAuth>
<!-- Set to true to enable serial number
whitelisting by reading a newline separated file
located at whitelist.txt. -->
<Whitelist>false</Whitelist>
</Config>