On Sat, Mar 8, 2008 at 2:51 AM, Matt Knesi <[EMAIL PROTECTED]> wrote: > With my current configuration, when serving static files (like images > for my site layout etc.), every request will load session data. > (an older post at: > http://www.gossamer-threads.com/lists/catalyst/users/1437 also mentioned > this) > > Is it possible to AVOID sessions for files from a specific directory?
Hi Matt For production deployment, the best solution is to avoid catalyst hitting your static files at all. For Apache for instance, you could do this with something like the following: <Location /static> SetHandler default-handler </Location> -- With regards Marcus Ramberg _______________________________________________ List: [email protected] Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/[email protected]/ Dev site: http://dev.catalyst.perl.org/
