Removed unhealthy default as 'localhost' often resides behind proxies and what not ...

This commit is contained in:
jvi
2020-12-27 14:20:44 +01:00
parent 92656c80a2
commit 4d3e76bf51

View File

@@ -57,7 +57,7 @@ public class AppProperties {
private Boolean narrative_enabled = true;
private Validation validation = new Validation();
private Map<String, Tester> tester = ImmutableMap.of("home", new Tester());
private Map<String, Tester> tester = null;
private Logger logger = new Logger();
private Subscription subscription = new Subscription();
private Cors cors = null;
@@ -460,8 +460,8 @@ public class AppProperties {
public static class Tester {
private String name = "Local Tester";
private String server_address = "http://localhost:8080/fhir";
private String name;
private String server_address;
private Boolean refuse_to_fetch_third_party_urls = true;
private FhirVersionEnum fhir_version = FhirVersionEnum.R4;