WiiSOAP/config.example.xml
Spotlight dad74c7f82
Allow no authentication
Only when debugging is enabled. Allows skipping of authentication for usage with CAS and so forth.
2021-07-24 18:27:56 -05:00

24 lines
779 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>
</Config>