• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..29-Mar-2016141

aclocal.m4H A D18-Mar-201642.7 KiB

ar-libH A D18-Mar-20165.7 KiB

AUTHORSH A D18-Mar-2016201

autogen.shH A D18-Mar-2016356

CMakeLists.txtH A D18-Mar-20161 KiB

compileH A D18-Mar-20167.2 KiB

config.guessH A D18-Mar-201642.5 KiB

config.hH A D18-Mar-201612.6 KiB

config.h.inH A D18-Mar-201611.8 KiB

config.statusH A D22-Apr-201676 KiB

config.subH A D18-Mar-201635.3 KiB

configureH A D18-Mar-2016544.4 KiB

configure.acH A D18-Mar-201622.6 KiB

COPYINGH A D18-Mar-20161.5 KiB

depcompH A D18-Mar-201623 KiB

distribute.shH A D22-Apr-20161.6 KiB

distribute.sh.inH A D18-Mar-20161.7 KiB

external_file/H18-Mar-20166

INSTALLH A D18-Mar-2016481

install-shH A D18-Mar-201614.8 KiB

libtoolH A D22-Apr-2016288.2 KiB

ltmain.shH A D18-Mar-2016277 KiB

m4/H18-Mar-20167

Makefile.amH A D18-Mar-2016162

Makefile.inH A D22-Apr-201624 KiB

missingH A D22-Apr-20166.7 KiB

NEWSH A D18-Mar-201662.8 KiB

preconfigureH A D18-Mar-2016270

preconfigure-scriptH A D18-Mar-20162.2 KiB

preconfigure-script-qtnH A D18-Mar-20162.3 KiB

READMEH A D18-Mar-20163.5 KiB

README.FreeBSDH A D18-Mar-20161.6 KiB

SConstructH A D18-Mar-201610.7 KiB

src/H22-Apr-2016164

README

1
2========
3lighttpd
4========
5
6-------------
7a light httpd
8-------------
9
10:author: Jan Kneschke
11:Date: $Date: 2004/11/03 22:25:54 $
12:Revision: $Revision: 1.8 $
13
14:abstract:
15  lighttpd a secure, fast, compliant and very flexible web-server
16  which has been optimized for high-performance environments. It has a very
17  low memory footprint compared to other webservers and takes care of cpu-load.
18  Its advanced feature-set (FastCGI, CGI, Auth, Output-Compression,
19  URL-Rewriting and many more) make lighttpd the perfect webserver-software
20  for every server that is suffering load problems.
21
22:documentation:
23  http://wiki.lighttpd.net/
24
25the naming
26----------
27
28lighttpd is a __httpd__ which is
29
30- fast as __light__ning and
31- __light__ when it comes to memory consumption and system requirements
32
33Features
34--------
35
36Network
37```````
38
39- IPv4, IPv6
40
41Protocols
42`````````
43
44- HTTP/1.0 (http://www.ietf.org/rfc/rfc1945.txt)
45- HTTP/1.1 (http://www.ietf.org/rfc/rfc2616.txt)
46- HTTPS (provided by openssl)
47- CGI/1.1 (http://CGI-Spec.Golux.Com/)
48- FastCGI (http://www.fastcgi.com/devkit/doc/fcgi-spec.html)
49
50Advanced Features
51`````````````````
52
53- load-balanced FastCGI
54  (one webserver distributes requests to multiple PHP-servers via FastCGI)
55- custom error pages (for Response-Code 400-599)
56- virtual hosts
57- directory listings
58- streaming CGI and FastCGI
59- URL-Rewriting
60- HTTP-Redirection
61- output-compression with transparent caching
62
63FastCGI-Support
64```````````````
65
66- parses the Response-header and completes the HTTP-header accordingly
67- Keep-Alive handling based on Content-Length header
68
69PHP-Support
70```````````
71
72- same speed as or faster than apache + mod_php4
73- handles various PHP bugs in the FastCGI SAPI
74- includes a utility to spawn FastCGI processes (necessary for PHP 4.3.x)
75
76Security features
77`````````````````
78
79- chroot(), set UID, set GID
80- protecting docroot
81
82HTTP/1.1 features
83`````````````````
84
85- Ranges (start-end, start-, -end, multiple ranges)
86- HTTP/1.0 Keep-Alive + HTTP/1.1 persistent Connections
87- methods: GET, HEAD, POST
88- Last-Modified + If-Modified handling
89- sends Content-Length if possible
90- sends Transfer-Encoding: chunk, if Content-Length is not possible
91- sends Content-Type
92- on-the-fly output compression (deflate, gzip)
93- authentication: basic and digest
94  (http://www.ietf.org/rfc/rfc2617.txt)
95
96HTTP/1.1 compliance
97```````````````````
98
99- Sends 206 for Range Requests
100- Sends 304 for If-Modified Requests
101- Sends 400 for missing Host on HTTP/1.1 requests
102- Sends 400 for broken Request-Line
103- Sends 411 for missing Content-Length on POST requests
104- Sends 416 for "out-of-range" on Range: Header
105- Sends 501 for request-method != (GET|POST|HEAD)
106- Sends 505 for protocol != HTTP/1.0 or HTTP/1.1
107- Sends Date: on every requests
108
109Intended Audience
110-----------------
111
112- Ad-Server Front-Ends ("Banner-Schleuder")
113  - delivering small files rapidly
114- php-servers under high load
115  (load-balancing the php-request over multiple PHP-servers)
116
117Works with
118----------
119
120It has been tested to work with
121
122- IE 6.0
123- Mozilla 1.x
124- Konqueror 3.1
125  (for Keep-Alive/Persistent Connections, Accept-Encoding for PHP + gzip)
126- wget
127  (for Resuming)
128- acrobat plugin
129  (for multiple ranges)
130
131
132Works on
133--------
134
135lighttpd has been verified to compile and work on
136
137- Linux
138- FreeBSD
139- NetBSD
140- Solaris 8 + 9
141- SGI IRIX 6.5
142
143missing for HTTP/1.1 compliance
144-------------------------------
145- parsing chunked POST request
146
147-----------------
148Starting lighttpd
149-----------------
150
151As daemon in the background: ::
152
153  $ lighttpd -f <configfile>
154
155or without detaching from the console: ::
156
157  $ lighttpd -D -f <configfile>
158
159
160

README.FreeBSD

1
2FreeBSD dependencies:
3
4- compiler:
5  pkg install gcc5
6- autotools + pkgconf (for builds from svn/git)
7  pkg install autotools pkgconf
8- pkgconf might be needed to find libs in build from tarball too:
9  pkg install pkgconf
10- building with cmake + ninja instead of autotools:
11  pkg install cmake ninja
12- libev (cross-platform event loop library) if freebsd-kqueue from lighty isn't working
13  pkg install libev
14- stack traces on asserts:
15  pkg install libunwind
16- PCRE (mod_rewrite, mod_redirect, config conditionals, ...)
17  pkg install pcre
18- TLS support (and mod_auth {SHA1} support)
19  pkg install libressl
20  or (mysql-connector-c still requires openssl)
21  pkg install openssl
22- PHP for unit tests
23  pkg install php56
24- MySQL for mod_mysql_vhost
25  pkg install mysql-connector-c
26- File and directory monitoring
27  pkg install gamin
28  or
29  pkg install fam
30- Lua 5.1 (mod_magnet and mod_cml; lighty upstream doesn't support 5.2 yet)
31  pkg install lua51
32- (deprecated) memcache library (mod_cml and mod_trigger_b4_dl feature)
33  pkg install libmemcache
34- gdbm (mod_trigger_b4_dl feature)
35  pkg install gdbm
36- LDAP (mod_auth feature)
37  pkg install openldap-client
38- SQLite3 (required for most mod_webdav features)
39  pkg install sqlite3
40- XML (mod_webdav properties and locking)
41  pkg install libxml2
42- UUID library (mod_webdav locking)
43  pkg install e2fsprogs-libuuid
44
45Configure:
46
47To help autotools find libraries and headers:
48CPPFLAGS=-I/usr/local/include LDFLAGS=-L/usr/local/lib ./configure ...
49
50With ssl the compiler might warn about OPENSSL_NO_KRB5 redefinitions, just
51configure "--with-kerberos5" for now.
52