Been trying to get the WrappingNeoServerBootstrapper to start the Neo4j WebAdmin interface on 0.0.0.0 instead of localhost. Tried everything form specifying JAVA_OPTS (E.g., -Do
I figured it out after reading through the Neo code. Here is my final working config.
And here is the config class:
public class Neo4jServerConfig implements Configurator {
private Configuration config;
public Ne4jServerConfig(Map config) {
this.config = new MapConfiguration(config);
}
@Override
public Configuration configuration() {
return config;
}
@Override
public Map getDatabaseTuningProperties() {
return null;
}
@Override
public Set getThirdpartyJaxRsClasses() {
return new HashSet<>();
}
}