Influxdb 2.x bind to multiple addresses?

Hello,
i have connected influxd to my domain, this works
influxd --http-bind-address my.domain.com:1234

but now it is not possible to connect via lacalhost, is there a way to do this additionally ?
I am running some scripts on the same server for which it would be very handy to have such a function.

Sockets can only be open on a single interface or the special 0.0.0.0 “any” interface.

If you specify a bind address you’re telling influxdb to only use a single interface.

Take the name out and just leave the :8086 port . (If for some reason you still can’t access via local host and external, try binding to “0.0.0.0:8086” )

Examples here in the docs