You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The console message output by web:run_app is misleading when one binds on 0.0.0.0 (the default): it says 127.0.0.1, so one can think it's listening on local interface only.
I can provide a simple PR modifying the aiohttp/web.py:312 line.
Also, maybe it would be good practise to make the default 127.0.0.1?
Long story short
The console message output by
web:run_app
is misleading when one binds on0.0.0.0
(the default): it says127.0.0.1
, so one can think it's listening on local interface only.I can provide a simple PR modifying the
aiohttp/web.py:312
line.Also, maybe it would be good practise to make the default
127.0.0.1
?Expected behaviour
======== Running on http://0.0.0.0:8000/ ========
(Press CTRL+C to quit)
Actual behaviour
======== Running on http://127.0.0.1:8000/ ========
(Press CTRL+C to quit)
Steps to reproduce
Simply call
web.run_app
as in the examplesThe text was updated successfully, but these errors were encountered: