[EMAIL PROTECTED] mod_cache windows problem

2008-03-01 Thread Ioannis Cherouvim
Hello I'm trying to get mod_cache and mod_disk_cache to work correctly. Problem summary is that disk cache is unable to overwrite previously cached content (on disk) for the same url. I run httpd 2.2.8 on windows XP. my very basic setup: LogLevel warn CacheRoot D:/tmp2 Docu

Re: [EMAIL PROTECTED] Excluding filetypes with

2007-06-23 Thread Ioannis Cherouvim
You seem to have your regex syntax a little muddled. You've got (?! which is fine for negative lookahead, but *. is shell wildcard syntax, not regex. .. perhaps, though I haven't tried it. It's a shame you're not using the more up-to-date mod_proxy_ajp rather than mod_jk as then you'd be abl

[EMAIL PROTECTED] Excluding filetypes with

2007-06-22 Thread Ioannis Cherouvim
Hello I've got apache 2 with jk2 fronting tomcat 5.0.28. I want to forward all http requests to tomcat, except from static files such as jpg, png etc. This is what I've tried but it doesn't seem to work. "^/(?!(*.js|*.png|*.jpg|*.bmp|*.gif|*.ico|*.swf|*.xml|*.pdf|*.doc|*.xls|*.zip|*.txt))">