Philip Mak <[EMAIL PROTECTED]> writes:

> My current solution is to "touch index.asp" in the port 80 DocumentRoot
> and have "DirectoryIndex index.asp" so that it knows to ProxyPass those
> requests. I'd have to "touch index.asp" manually for every directory,
> though. Is there a better way around this?

To ease your task... I think there might be a better solution that
does not involve this index.asp file, but I can't think of it now.


======================================================================
#!/bin/bash
cd document_root
for i in `find -type d`
do
  cd $i
  touch index.asp
  cd -
done
======================================================================


See you,
-- 
Godoy. <[EMAIL PROTECTED]>

Solutions Developer       - Conectiva Inc. - http://en.conectiva.com
Desenvolvedor de Soluções - Conectiva S.A. - http://www.conectiva.com.br

Attachment: msg22363/pgp00000.pgp
Description: PGP signature

Reply via email to