mirror of
https://github.com/versity/versitygw.git
synced 2026-03-27 18:05:00 +00:00
This allows specifying the following options more than once: port, admin-port, webui or using a comma-separated list for the env vars: e.g., VGW_PORT=:7070,:8080,localhost:9090 This will also expand multiple interfaces from hostnames, for example "localhost" in this case would resolve to both IPv4 and IPv6 interfaces: localhost has address 127.0.0.1 localhost has IPv6 address ::1 This updates the banner to reflect all of the listening interfaces/ports, and starts the service listener on all requested interfaces/ports. Fixes #1761