I want to bind the Chirpstack webserver running on port 8080 to both IPV4 and IPV6. I can specify one OR the other, but not both. I’ve tried
bind = "0.0.0.0:8080,[::]:8080"
and
bind = "0.0.0.0:8080 [::]:8080"
and
bind = "0.0.0.0:8080"
bind = "[::]:8080"
all of which result in a parsing error at startup.
Is there a way to specify both interfaces?