Ah, I see, thanks.
This allows remote machines to hit the server, but the request
receives a 200.
Let's say this machine is on a secure network.
If I wanted to hack web2py so that remote machines on the network
could access the application, could I simply uncomment line 17 from
applications/models/access.py ?
#raise HTTP(200, T('Admin is disabled because insecure channel'))
On Sep 6, 2:40 pm, Massimo Di Pierro <[email protected]>
wrote:
> How are you starting web2py?
>
> You should be using
>
> python.exe web2py.py -i 0.0.0.0 -p 80
>
> 0.0.0.0 means accessible publicly (if no firewall) and -p 80 sets the
> port.
>
> On Sep 6, 2:15 pm, Christopher Baron <[email protected]> wrote:
>
>
>
>
>
>
>
> > Hi web2py users,
>
> > I'm running a web2py server on a windows xp machine. Let's call it
> > the kiosk machine. The kiosk machine has a static IP. I am able to
> > ping the kiosk machine from other computers on the network. However,
> > I'm unable to send an http request from a computer on the network to
> > the kiosk machine. These are not administrative web pages.
>
> > Why is this?
>
> > I'm happy to provide more information if needed, thanks in advance.
>
> > Chris