-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
it is not always possible to get influxdb listen on root path behind a proxy;
perhaps it is possible to add a path variable to the "Configuration" which makes it possible to use it for influxdb running behing a proxy?
like:
...
public Configuration(String host, String port, String path, String username, String password, String database) {
this.host = host;
this.port = port;
this.path = path;
this.username = username;
this.password = password;
this.database = database;
}
...