On Fri, 1 Mar 2002, Stefano Mazzocchi wrote: > > Can you donate your mod_rewrite configurations? that would make it a > good example in the docs, at least. Here it is -
NameVirtualHost domain.com <VirtualHost domain.com:80> ServerAdmin [EMAIL PROTECTED] ServerName www.domain.com ServerAlias domain.com ErrorDocument 404 /cgi-bin/errors/monitor.cgi ErrorDocument 500 /cgi-bin/errors/monitor.cgi # Rewrite module has to be the last module in the Apache AddModule list RewriteEngine On # let apache handle RewriteRule \.(gif|jpg|png|css|txt|html|js|pdf|cab|jar|php|xml)$ - [L] RewriteRule ^/cgi-bin - [L] # my apache site monitor RewriteRule ^/watch-info - [L] RewriteRule ^/$ /cocoon/index [L,PT] # other servlet applications - passed through RewriteRule ^/main - [L] # everything else to cocoon RewriteRule ^/(.*)$ /cocooon/$1 [L,PT] DocumentRoot /home/domain.com/public ScriptAlias /cgi-bin/ /home/domain.com/cgi-bin/ DirectoryIndex index.html index.jsp index.php # make sure tomcat config webapp connector only binds to 127.0.0.1 for security - and here we access it through the same loopback interface WebAppConnection warpcocoon warp localhost:9999 WebAppDeploy cocoon warpcocoon /cocoon # no need for different connection of other tomcat webapp WebAppDeploy main warpcocoon /main </VirtualHost> > > different builds -- > Please, elaborate more on this. > > will do, probably over the weekend -- Akber Choudhry Dyanet Inc. http://www.dyanet.com/ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]