Re: Finding IP address connected to your http server.

2003-01-17 Thread Victor Tsang
Maybe we should bring this discussion out to a more appropiate list, but anyways, have a look into this doc. http://dev.zope.org/Wikis/DevSite/Proposals/RemoteAddrAndAccelerators This is not perfertly reliable, but you might want to consider it. Tor. > > Please bear in mind that this IP addr

Re: Finding IP address connected to your http server.

2003-01-17 Thread Gary Stainburn
On Friday 17 Jan 2003 7:18 am, simran wrote: > if (you are looking for connections that have come in over time) then > look in the log file > else if i you are looking for the ip that is current connecting to the cgi > script you can usually find that info in the environment variable > REMOTE

Re: Finding IP address connected to your http server.

2003-01-16 Thread Victor Tsang
how about using mod_status? it shows all the IP connected to the server. Tor. simran wrote: > > if (you are looking for connections that have come in over time) then > look in the log file > else if i you are looking for the ip that is current connecting to the cgi script > you c

Re: Finding IP address connected to your http server.

2003-01-16 Thread simran
if (you are looking for connections that have come in over time) then look in the log file else if i you are looking for the ip that is current connecting to the cgi script you can usually find that info in the environment variable REMOTE_ADDR - $ENV{'REMOTE_ADDR'} else t