[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] Apache logs



On Mon, 9 Apr 2001, Mark Remde wrote:

> gsh
> 
> Thanks for the info, but there are about 40 or more domains so far, and a new
> one appears every day or two. Is there no way of preventing this once
> and for all? My httpd.conf (on a raq3i btw) has..
> 
> #ProxyRequests On

That doesn't completly disable proxying if you have the module loaded

ProxyBlock *

#and perhaps something like
<Directory proxy:*>
Order Deny,Allow
Deny from all
</Directory>

If you want proxy for internal , you will have to get fancier than this

http://httpd.apache.org/docs/mod/mod_proxy.html

> 
> i.e. commented out. I have tried using this raq as a proxy, and it doesn't
> work for me, so it's perhaps a strange url they are requesting.

The 'strange url' is standard for a proxy server (http 1.0)

> 
> Has anyone used apache through inetd rather than standalone? Good idea
> or bad?

really truely evil ;) it takes several seconds to startup apache, running
it through inetd will do that for every request, every image, etc...

gsh