WiiSOAP/config.example.xml
2024-01-15 13:59:03 +00:00

28 lines
944 B
XML

<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>