StreaMonitor icon indicating copy to clipboard operation
StreaMonitor copied to clipboard

Access web interface outside of localhost

Open glottisfaun0000 opened this issue 2 years ago • 1 comments

Accessing the 5000 port from another machine gives me empty html. Is this something on my end, a setting, or expected behavior?

glottisfaun0000 avatar Aug 09 '23 17:08 glottisfaun0000

I'm not absolutly sure but this could be because of this line in the HTTP Manager:

app.run(host='127.0.0.1', port=5000)

This bounds the HTTP Port to localhost. As long as you can connect this shouldn't be an IP based bounding. But it could lead to the empty HTML.

You could try to change the above to this:

app.run(port=5000)

This should bind port 5000 to all IPs of the host and eventually allows sending an response on all IPs.

DerBunteBall avatar Aug 09 '23 18:08 DerBunteBall