haproxy-dashboard icon indicating copy to clipboard operation
haproxy-dashboard copied to clipboard

dashboard not accessible from ipv6

Open popallo opened this issue 2 years ago • 1 comments

Hi,

In the app.py, the listener listens by default only on ipv4 because is set to:

app.run(host='0.0.0.0', port=5000[...]

It is necessary to change this as follows for the interface to be accessible from IPv6:

app.run(host='::', port=5000[...]

Doing the following allows access via IPv6 but also via IPv4.

popallo avatar Oct 16 '23 21:10 popallo

Hi, Fixed this issue. Dashboard is now accessible via IPV6.

alonz22 avatar May 28 '25 06:05 alonz22