mirror of
https://github.com/JonasunderscoreJones/McWebserver.git
synced 2025-10-23 03:19:19 +02:00
advanced api is disabled by default
This commit is contained in:
parent
1a69b6ce2c
commit
668094844d
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ public class ModConfigs {
|
||||||
WEB_FILE_ROOT = CONFIG.getOrDefault("web.file.root", "index.html");
|
WEB_FILE_ROOT = CONFIG.getOrDefault("web.file.root", "index.html");
|
||||||
WEB_FILE_404 = CONFIG.getOrDefault("web.file.404", "404.html");
|
WEB_FILE_404 = CONFIG.getOrDefault("web.file.404", "404.html");
|
||||||
SERVER_API_ENABLED = CONFIG.getOrDefault("web.api", true);
|
SERVER_API_ENABLED = CONFIG.getOrDefault("web.api", true);
|
||||||
ADV_API_ENABLED = CONFIG.getOrDefault("web.api.adv", true);
|
ADV_API_ENABLED = CONFIG.getOrDefault("web.api.adv", false);
|
||||||
WEB_FILE_NOSUPPORT = CONFIG.getOrDefault("web.file.notSupported", "not_supported.html");
|
WEB_FILE_NOSUPPORT = CONFIG.getOrDefault("web.file.notSupported", "not_supported.html");
|
||||||
VERBOSE = CONFIG.getOrDefault("logger.verbose", true);
|
VERBOSE = CONFIG.getOrDefault("logger.verbose", true);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue