way to change the hosted socket
ShasV05 opened this issue · 2 comments
ShasV05 commented
is there a way to change the hosted socket from 127.0.0.1 to 192.168.*.
miguelgrinberg commented
Sure. Call socketio.run(app, host='0.0.0.0')
and then the server will listen on all the IP addresses associated with your machine.
ShasV05 commented
thanks