mod_cache for lighttpd 1.4.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News mod_cache for lighttpd 1.4.2 (Default branch)
# 1  
Old 02-29-2008
mod_cache for lighttpd 1.4.2 (Default branch)

mod_cache is a cache plugin for lighttpd. It works like Squid with a similar configuration. However, mod_cache is faster and more effective than Squid because of the power of lighttpd. License: BSD License (revised) Changes:
A bug in the fetchall-for-range-request option has been fixed. This release can work with the mod_flv_streaming module. modcache 1.4.2 has been backported to lighttpd 1.4.18 as modcache 1.4.3.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Debian

Vulnerable to symlink attack notice while trying to upgrade lighttpd.

I got this while I tried to upgrade my server and have been unable to find any explanations for what I could do while I have searched after an solution. I were an bit uncertain about how to search for an answer and have tried with some searches that I think should have been good enough as well with... (2 Replies)
Discussion started by: Jonathan Sander
2 Replies

2. Debian

Lighttpd problem

Hi please help, sudden problem. (Without modification) My server ~ 3-4 days ago, daily 4-5x timeout problem (slow loading my website). Always the problem occurs every 4 hours!!! (No cronjob) 5500-28000 ms loading time 2-3 minutes and after resolves. 3-4 days before anything about not set the... (10 Replies)
Discussion started by: nenmart
10 Replies

3. UNIX for Advanced & Expert Users

Mod_cache doubt

Hi, I want to cache a URL http://something.com/project.test.html. I was trying to use mod_disk_cache in my apache 2.2/centos 5.5 (Final). im not able to cache the URL. Please lend me some helping hand. LoadModule disk_cache_module modules/mod_disk_cache.so <IfModule... (3 Replies)
Discussion started by: Paulwintech
3 Replies
Login or Register to Ask a Question
Catalyst::Manual::Deployment::lighttpd::FastCGI(3pm)	User Contributed Perl Documentation   Catalyst::Manual::Deployment::lighttpd::FastCGI(3pm)

NAME
Catalyst::Manual::Deployment::lighttpd::FastCGI - Deploying Catalyst with lighttpd Lighttpd These configurations were tested with Lighttpd 1.4.7. Standalone server mode server.document-root = "/var/www/MyApp/root" fastcgi.server = ( "" => ( "MyApp" => ( "socket" => "/tmp/myapp.socket", "check-local" => "disable" ) ) ) Static mode server.document-root = "/var/www/MyApp/root" fastcgi.server = ( "" => ( "MyApp" => ( "socket" => "/tmp/myapp.socket", "check-local" => "disable", "bin-path" => "/var/www/MyApp/script/myapp_fastcgi.pl", "min-procs" => 2, "max-procs" => 5, "idle-timeout" => 20 ) ) ) Note that in newer versions of lighttpd, the min-procs and idle-timeout values are disabled. The above example would start 5 processes. Non-root configuration You can also run your application at any non-root location with either of the above modes. Note the required mod_rewrite rule. url.rewrite = ( "myapp$" => "myapp/" ) fastcgi.server = ( "/myapp" => ( "MyApp" => ( # same as above ) ) ) For more information on using FastCGI under Lighttpd, visit <http://www.lighttpd.net/documentation/fastcgi.html> Static file handling Static files can be served directly by lighttpd for a performance boost. $HTTP["url"] !~ "^/(?:img/|static/|css/|favicon.ico$)" { fastcgi.server = ( "" => ( "MyApp" => ( "socket" => "/tmp/myapp.socket", "check-local" => "disable", ) ) ) } This will serve everything in the "img", "static", and "css" directories statically, as well as the favicon file. AUTHORS
Catalyst Contributors, see Catalyst.pm COPYRIGHT
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-20 Catalyst::Manual::Deployment::lighttpd::FastCGI(3pm)