Web.py "hello World" Not Working - Err_address_invalid
I'm trying to get the 'Hello World' example for Web.py working and it's giving me an error: This person seemed to be having the same issue in 2011 and the sole response suggest
Solution 1:
0.0.0.0
is the IP address is bound to. Your server will be reachable on every interface of your machine on any of the IP addresses that your computer has been assigned.
To contact the server, you need to specify its actual IP address. 0.0.0.0 is not a valid IP address. For instance, if the server runs on your local machine, try http://127.0.0.1:8080/ .
Post a Comment for "Web.py "hello World" Not Working - Err_address_invalid"