Ok, so I'm back to Flask, making progress.
Is it normal for "debug=True" to prevent accessing the server?
Without debug I can access from any device on my home network. With debug=True I can't even access from the Rasp Pi running Flask.
I should at least be able to access from the same device running Flask??
Code:
if __name__ == "__main__": app.run(host="0.0.0.0", port=8035) # this worksCode:
app.run(debug=True, host="0.0.0.0", port=8055) # this does not workCode:
app.run(host='0.0.0.0', port=8080, debug=True) # this does not workCode:
app.run(host="0.0.0.0", port=8050, debug=True) # this does not workWithout debug I can access from any device on my home network. With debug=True I can't even access from the Rasp Pi running Flask.
I should at least be able to access from the same device running Flask??
Statistics: Posted by OldPCGuy — Sat Oct 11, 2025 12:13 am