this.user = settings.get("http.basic.user", "admin");
this.password = settings.get("http.basic.password", "admin_pw");
this.whitelist = new InetAddressWhitelist(
settings.getAsArray("http.basic.ipwhitelist",
new String[]{"localhost", "127.0.0.1"}));
this.proxyChains = new ProxyChains(
settings.getAsArray(
"http.basic.trusted_proxy_chains", new String[]{""}));
// for AWS load balancers it is X-Forwarded-For -> hmmh does not work
this.xForwardHeader = settings.get("http.basic.xforward", "");