Software:lighttpd
Original author(s) | Jan Kneschke |
---|---|
Initial release | March 2003 |
Stable release | 1.4.64 (January 19, 2022[±][1] | )
Written in | C |
Available in | English |
Type | Web server |
License | BSD-3-Clause |
lighttpd (prescribed pronunciation: "lighty")[2] is an open-source web server optimized for speed-critical environments while remaining standards-compliant, secure and flexible.[citation needed] It was originally written by Jan Kneschke as a proof-of-concept of the c10k problem – how to handle 10,000 connections in parallel on one server,[3] but has gained worldwide popularity.[4] Its name is a portmanteau of "light" and "httpd".
Premise
The low memory footprint (compared to other web servers),[5] small CPU load and speed optimizations[6] make lighttpd suitable for servers that are suffering load problems, or for serving static media separately from dynamic content. lighttpd is free and open-source software and is distributed under the BSD license. It runs natively on Unix-like operating systems, as well as Microsoft Windows.[7]
Application support
lighttpd supports the FastCGI, SCGI and CGI interfaces to external programs, allowing web applications written in any programming language to be used with the server. As a particularly popular language, PHP performance has received special attention. Lighttpd's FastCGI can be configured to support PHP with opcode caches (like APC) properly and efficiently. Additionally, it has received attention from its popularity within the Python, Perl, Ruby and Lua communities. Lighttpd also supports WebDNA, the resilient in-memory database system designed to build database-driven websites. It is a popular web server for the Catalyst and Ruby on Rails web frameworks. Lighttpd does not support ISAPI.
Features
- Load balancing, CGI, FastCGI, SCGI, HTTP proxy, Servlet AJP, WebSocket tunnel support
chroot
support- Web server event mechanism performance –
select()
,poll()
, andepoll()
[8] - Support for more efficient event notification schemes like
kqueue
andepoll
- Conditional URL rewriting (mod_rewrite)
- TLS/SSL with SNI support, via OpenSSL, GnuTLS, Mbed TLS, NSS, WolfSSL.[9]
- Authentication against an LDAP or DBI server
- RRDtool statistics
- Rule-based downloading with possibility of a script handling only authentication
- Server Side Includes support (but not server-side CGI from SSI)[10]
- Flexible virtual hosting
- Modules support
- Lua programming language scripts via mod_magnet[11]
- WebDAV support
- HTTP compression using mod_deflate (zlib, brotli, zstd)
- Light-weight (less than 1 MB)[12]
- Single-process design with only several threads. No processes or threads started per connection.
- HTTP/2 support since lighttpd 1.4.56
- HTTP/2 WebSocket support since lighttpd 1.4.65
Limitations
- Versions below 1.4.40 do not officially support sending large files from CGI, FastCGI, or proxies[13] unless X-Sendfile is used. This limitation has been removed in lighttpd 1.4.40.[14]
- No HTTP/3 support
Usage
Lighttpd was used in the past by several high-traffic websites, including Bloglines, xkcd, Meebo, and YouTube.[15][better source needed] The Wikimedia Foundation also once ran Lighttpd servers.[16] Due to relatively small size it's often used in embedded devices like GL.iNet and Turris Omnia.
It's also used by git as a HTTP server daemon.
See also
- Comparison of web server software
- Internet Cache Protocol
- Proxy server which discusses client-side proxies
- Reverse proxy which discusses origin-side proxies
- Traffic Server
- Web accelerator which discusses host-based HTTP acceleration
References
- ↑ "1.4.64". 2022-01-19. https://www.lighttpd.net/2022/1/19/1.4.64/.
- ↑ "lighttpd fly light". http://www.lighttpd.net/. "all of these describe lighttpd (pron. lighty)".
- ↑ "lighttpd: Story". lighttpd.net. http://www.lighttpd.net/story.
- ↑ "Powered By lighttpd". Lighttpd wiki. http://trac.lighttpd.net/trac/wiki/PoweredByLighttpd.
- ↑ "Web Server Performance Comparison". http://wiki.dreamhost.com/Web_Server_Performance_Comparison..
- ↑ Gabriel Kerneis and Juliusz Chroboczek. Are events fast?. PPS technical report, University of Paris 7. 2009.
- ↑ "lighttpd release 1.4.70". https://redmine.lighttpd.net/projects/lighttpd/wiki/Release-1_4_70.
- ↑ Gammo, Louay; Brecht, Tim; Shukla, Amol; Pariag, David (2004). "Comparing and Evaluating epoll, select, and poll Event Mechanisms". Linux Symposium. University of Waterloo. p. 215. https://cs.uwaterloo.ca/~brecht/papers/ols-2004.pdf.
- ↑ "1.4.56 - Lighttpd - fly light". 2020-11-29. https://www.lighttpd.net/2020/11/29/1.4.56/.
- ↑ Lighttpd - Bug #1101: SSI include virtual does not run cgi – lighty labs
- ↑ "Docs ModMagnet - Lighttpd - lighty labs". http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModMagnet.
- ↑ "lighttpd releases". lighttpd.net. http://download.lighttpd.net/lighttpd/.
- ↑ "Memory usage increases when proxy+ssl+large file". lighttpd bug tracker. http://redmine.lighttpd.net/issues/1283.
- ↑ "lighty should buffer responses (after it grows above certain size) on disk". lighttpd bug tracker. https://redmine.lighttpd.net/issues/933.
- ↑ "Fly Light With Lighttpd Web Server". ServerWatch. http://www.serverwatch.com/stypes/servers/article.php/17191_3678346.
- ↑ "Powered by Lighttpd". The official site. 2007-04-04. http://www.lighttpd.net/2007/4/4/powered-by-lighttpd. "lighttpd is used by many well-known sites. The typical scenario is using lighttpd as off-load server to push out static content and leave the complex work to another server."
Further reading
- Bogus, Andre (October 29, 2008). Lighttpd (1st ed.). Packt Publishing. p. 236. ISBN 978-1847192103. https://www.packtpub.com/lighttpd/book.
External links
Original source: https://en.wikipedia.org/wiki/Lighttpd.
Read more |