[web2py] Re: Web2py LAN

2011-09-16 Thread Matt Gorecki
Also, if you start with 0.0.0.0, web2py will listen on all of your available interfaces. For example, I have a situation where I want web2py accesible on the local LAN and as well as over a VPN connection. 0.0.0.0 works for both regardless of IP address. Matt

[web2py] Re: Web2py LAN

2011-09-15 Thread Anthony
Either way should work. With 0.0.0.0, you don't need to know your machine's exact IP address. Anthony On Friday, September 16, 2011 2:06:47 AM UTC-4, JavierQQ wrote: > > Thank you, I found another that says > > web2py.exe -i 192.168.0.1 -p 8000 -a 'password' > > > http://groups.google.com/grou

[web2py] Re: Web2py LAN

2011-09-15 Thread Anthony
0.0.0.0 also enables you to access web2py via http://localhost or http://127.0.0.1 from the local machine. Anthony On Friday, September 16, 2011 2:20:13 AM UTC-4, Anthony wrote: > > Either way should work. With 0.0.0.0, you don't need to know your machine's > exact IP address. > > Anthony > > O

[web2py] Re: Web2py LAN

2011-09-15 Thread JavierQQ
Thank you, I found another that says web2py.exe -i 192.168.0.1 -p 8000 -a 'password' http://groups.google.com/group/web2py/browse_thread/thread/b33c44007871c0e2/f19fd80de8043f64?lnk=gst&q=web2py+lan#f19fd80de8043f64 I finally solved it On Sep 16, 1:00 am, Anthony wrote: > When you start web2py

[web2py] Re: Web2py LAN

2011-09-15 Thread Anthony
When you start web2py, specify IP address 0.0.0.0 and port 80 to make it publicly accessible (the default 127.0.0.1:8000 is only available on the local machine). See http://web2py.com/book/default/chapter/03#Startup. Anthony On Friday, September 16, 2011 1:45:42 AM UTC-4, JavierQQ wrote: > > H