1
2====
3NEWS
4====
5
6- 1.4.32 -
7  * Code cleanup with clang/sparse (fixes #2437, thx kibi)
8  * Ignore EPIPE/ECONNRESET after SSL_shutdown
9  * Handle ENAMETOOLONG, return 404 Not Found (fixes #2396, thx dererkazo)
10  * configure.ac: remove old stuff, add some new to fix warnings in automake 1.12 (fixes #2419, thx blino)
11  * add PATCH method (fixes #2424)
12  * fix :port handling in $HTTP["host"] checks (fixes #2135. thx liming)
13  * network_server_init: fix double free and memleak on error (fixes #2440, thx kyprizel)
14  * detect "x-gzip"/"x-bzip2" as separate encodings, more strict encoding matching (fixes #2443)
15  * tests: make sure mod_proxy doesn't leave running processes (fixes #2435, thx kibi)
16  * mod_extforward: log address of untrusted proxy with debug.log-request-handling
17  * fix DoS in Connection header value split (reported by Jesse Sipprell, CVE-2012-5533)
18  * remove whitespace at end of header keys
19
20- 1.4.31 - 2012-05-31
21  * [ssl] fix segfault in counting renegotiations for openssl versions without TLSEXT/SNI (thx carpii for reporting)
22  * Move fdevent subsystem includes to implementation files to reduce conflicts (fixes #2373)
23  * [mod_compress] fix handling if etags are disabled but cache-dir is set - may lead to double response
24  * disable mmap by default (fixes #2391)
25  * buffer_caseless_compare: always convert letters to lowercase to get transitive results, fixing array lookups (fixes #2405)
26  * Fix handling of empty header list entries in http_request_split_value, fixing invalid read in valgrind (fixes #2413)
27  * Fix access log escaping of " and \\ (fixes #1551)
28  * [mod_auth] Fix digest "md5-sess" implementation (Errata ID 1649, RFC 2617) (fixes #2410)
29  * [auth] Add "AUTH_TYPE" environment (for *cgi), remove fastcgi specific workaround, add fastcgi test case (fixes #889)
30  * [mod_*cgi,mod_accesslog] Fix splitting :port with ipv6 (fixes #2333, thx simoncpu)
31  * Detect multiple -f options: show error message instead of assert (fixes #2416)
32  * [mod_extforward] Support ipv6 addresses (fixes #1889)
33  * [mod_redirect] Support url.redirect-code option (fixes #2247)
34  * Fix --enable-mmap handling in configure.ac
35
36- 1.4.30 - 2011-12-18
37  * Always use our 'own' md5 implementation, fixes linking issues on MacOS (fixes #2331)
38  * Limit amount of bytes we send in one go; fixes stalling in one connection and timeouts on slow systems.
39  * [ssl] fix build errors when Elliptic-Curve Diffie-Hellman is disabled
40  * Add static-file.disable-pathinfo option to prevent handling of urls like .../secret.php/image.jpg as static file
41  * Don't overwrite 401 (auth required) with 501 (unknown method) (fixes #2341)
42  * Fix mod_status bug: always showed "0/0" in the "Read" column for uploads (fixes #2351)
43  * [mod_auth] Fix signedness error in http_auth (fixes #2370, CVE-2011-4362)
44  * [ssl] count renegotiations to prevent client renegotiations
45  * [ssl] add option to honor server cipher order (fixes #2364, BEAST attack)
46  * [core] accept dots in ipv6 addresses in host header (fixes #2359)
47  * [ssl] fix ssl connection aborts if files are larger than the MAX_WRITE_LIMIT (256kb)
48  * [libev/cgi] fix waitpid ECHILD errors in cgi with libev (fixes #2324)
49
50- 1.4.29 - 2011-07-03
51  * Fix mod_proxy waiting for response even if content-length is 0 (fixes #2259)
52  * Silence annoying "connection closed: poll() -> ERR" error.log message (fixes #2257)
53  * mod_cgi: make read buffer as big as incoming data block
54  * [build] Fix detection of libev (fixes #2300)
55  * ssl: Support for Diffie-Hellman and Elliptic-Curve Diffie-Hellman key exchange (fixes #2301)
56         add ssl.use-sslv3 (fixes #2246)
57         load all algorithms (fixes #2239)
58  * [ssl/md5] prefix our own md5 implementation with li_ so it doesn't conflict with the openssl one (fixes #2269)
59  * [ssl/build] some minor fixes; fix compile without ssl, cleanup ssl config buffers
60  * [proc,include_shell] log error if exec shell fails (fixes #2280)
61  * [*cgi] Use physical base dir (alias, userdir) as DOCUMENT_ROOT in cgi environments (fixes #2216)
62  * [doc] Move docs to outdated/ subdir and refer to wiki instead (fixes #2248)
63  * fdevent: add solaris eventports (fixes #2171)
64
65- 1.4.28 - 2010-08-22
66  * Rename fdevent_event_add to _set to reflect what the function does. Fix some handlers. (fixes #2249)
67  * Fix buffer.h to include stdio.h as it is needer for SEGFAULT() (fixes #2250)
68
69- 1.4.27 - 2010-08-13
70  * Fix handling return value of SSL_CTX_set_options (fixes #2157, thx mlcreech)
71  * Fix mod_proxy HUP handling (send final chunk, fix usage counter)
72  * mod_proxy: close connection on write error (fixes #2114)
73  * Check uri instead of physical path for directory redirect
74  * Fix detecting git repository (fixes #2173, thx ncopa)
75  * [mod_compress] Fix segfault when etags are disabled (fixes #2169)
76  * Reset uri.authority before TLS servername handling, reset all "keep-alive" data in connection_del (fixes #2125)
77  * Print double quotes properly when dumping config file (fixes #1806)
78  * Include IP addresses on error log on password failures (fixes #2191)
79  * Fix stalls while reading from ssl sockets (fixes #2197)
80  * Fix etag formatting on boxes with 32-bit longs
81  * Fix two compiler warnings
82  * mod_accesslog: fix %p for ipv6 sockets (fixes #2228, thx jo.henke)
83  * mod_fastcgi: Send 502 "Bad Gateway" if we couldn't open the file for X-Sendfile (fixes #2226)
84  * mod_staticfile: add debug output if we ignore a file with static-file.exclude-extensions (fixes #2215)
85  * mod_cgi: fix race condition leaving response not forwarded to client (fixes #2217)
86  * mod_accesslog: Fix var declarations mixed in source (fixes #2233)
87  * mod_status: Add version to status page (fixes #2219)
88  * mod_accesslog: optimize accesslog_append_escaped (fixes #2236, thx crypt)
89  * openssl: silence annoying error messages for errno==0 (fixes #2213)
90  * array.c: improve array_get_unused_element to check data type; fix mem leak if unused_element didn't find a matching entry (fixes #2145)
91  * add check to stop loading plugins twice
92  * cleanup fdevent code, removed linux-rtsig handler, replaced some fprintf calls
93  * only require FDEVENT_IN bit to be set for listening connections (fixes #2227)
94  * add libev fdevent handler: server.event-handler = "libev"
95  * mod_proxy: return response as soon as it is available (fixes #2196)
96  * don't overwrite global server.force-lowercase-filenames setting (fixes #2042)
97  * bind to IPV6-only if ipv6 address was specified (http://redmine.lighttpd.net/projects/lighttpd/wiki/IPv6-Config)
98
99- 1.4.26 - 2010-02-07
100  * Fix request parser to handle packets with splitted \r\n\r\n (fixes #2105)
101  * Remove dependency on automake >= 1.11 with m4_ifdef check
102  * mod_accesslog: support %e (fixes #2113, thx presbrey)
103  * Fix mod_cgi cgi.execute-x-only option in global block
104  * mod_fastcgi: x-sendfile2 parse error debugging
105  * Fix mod_proxy dead host detection if connect() fails
106  * Fix fd leaks in mod_cgi (fds not closed on pipe/fork failures, found by Rodrigo, fixes #2158, #2159)
107  * Fix segfault with broken rewrite/redirect patterns (fixes #2140, found by crypt)
108  * Append to previous buffer in con read, fix DoS/OOM vulnerability (fixes #2147, found by liming, CVE-2010-0295)
109  * Fix HUP detection in close-state if event-backend doesn't support FDEVENT_HUP (like select or poll on FreeBSD)
110
111- 1.4.25 - 2009-11-21
112  * mod_magnet: fix pairs() for normal tables and strings (fixes #1307)
113  * mod_magnet: add traceback for printing lua errors
114  * mod_rewrite: fix compile error if compiled without pcre
115  * disable warning "CLOSE-read" (fixes #2091)
116  * mod_rrdtool: fix creating file if it doesn't exist (#1788)
117  * reset tlsext_server_name in connection_reset - fixes random hostnames in the $HTTP["host"] conditional
118  * export some SSL_CLIENT_* vars for client cert validation (fixes #1288, thx presbrey)
119  * mod_fastcgi: fix mod_fastcgi packet parsing
120  * mod_fastcgi: Don't reconnect after connect() succeeded (fixes #2096)
121  * Fix configure.ac to allow autoreconf, also enables make V=0
122
123- 1.4.24 - 2009-10-25
124  * Add T_CONFIG_INT for bigger integers from the config (needed for #1966)
125  * Use unsigned int (and T_CONFIG_INT) for max_request_size
126  * Use unsigned int for secdownload.timeout (fixes #1966)
127  * Keep url/host values from connection to display information while keep-alive in mod_status (fixes #1202)
128  * Add server.breakagelog, a "special" stderr (fixes #1863)
129  * Fix config evaluation for debug.log-timeouts option (#1529)
130  * Add "cgi.execute-x-only" to mod_cgi, requires +x for cgi scripts (fixes #2013)
131  * Fix FD_SETSIZE comparision warnings
132  * Add "lua-5.1" to searched pkg-config names for lua
133  * Fix unused function webdav_lockdiscovery in mod_webdav
134  * cmake: Fix crypt lib check
135  * cmake: Add -export-dynamic to link flags, fixes build on FreeBSD
136  * Set FD_CLOEXEC for bound sockets before pipe-logger forks (fixes #2026)
137  * Reset ignored signals to SIG_DFL before exec() in fastcgi/scgi (fixes #2029)
138  * Show "no uri specified -> 400" error only when "debug.log-request-header-on-error" is enabled (fixes #2030)
139  * Fix hanging connection in mod_scgi (fixes #2024)
140  * Allow digits in hostnames in more places (fixes #1148)
141  * Use connection_reset instead of handle_request_done for cleanup callbacks
142  * Change mod_expire to append Cache-Control instead of overwriting it (fixes #1997)
143  * Allow all comparisons for $SERVER["socket"] - only bind for "=="
144  * Remove strptime failed message (fixes #2031)
145  * Fix issues found with clang analyzer
146  * Try to fix server.tag issue with localized svnversion
147  * Fix handling network-write return values (#2024)
148  * Use disable-time in fastcgi for all disables after errors, default is 1sec (fixes #2040)
149  * Remove adaptive spawning code from fastcgi (was disabled for a long time)
150  * Allow mod_mysql_vhost to use stored procedures (fixes #2011, thx Ben Brown)
151  * Fix ipv6 in mod_proxy (fixes #2043)
152  * Print errors from include_shell to stderr
153  * Set tm.tm_isdst = 0 before mktime() (fixes #2047)
154  * Use linux-epoll by default if available (fixes #2021, thx Olaf van der Spek)
155  * Print an error if you use too many captures in a regex pattern (fixes #2059)
156  * Combine Cache-Control header value in mod_expire to existing HTTP header if header already added by other modules (fixes #2068)
157  * Remember keep-alive-idle in separate variable (fixes #1988)
158  * Fix header inclusion order, always include "config.h" before any system header
159  * mod_webdav: Patch to skip login information for domain part of Destination field (fixes #1793)
160  * mod_webdav: Delete old properties before updating new for MOVE (fixes #1317)
161  * Read hostname from absolute uris in the request line (fixes #1937)
162  * mod_fastcgi: don't disable backend if disable-time is 0 (fixes #1825)
163  * mod_compress: match partial+full content-type (fixes #1552)
164  * mod_fastcgi: fix is_local detection, respawn backends if bin-path is set (fixes #897)
165  * Fix linger-on-close behaviour to avoid rare failure conditions (was r2636, fixes #657)
166  * mod_fastcgi: restart local procs immediately after they terminated, fix local procs handling
167  * Fix segfault on invalid config "duplicate else conditions" (fixes #2065)
168  * mod_usertrack: Use T_CONFIG_INT for max-age, solves range problem (#1455)
169  * mod_accesslog: configurable timestamp logging (fixes #1479)
170  * always define _GNU_SOURCE
171  * Add some iterators for mod_magnet (fixes #1307)
172  * Fix close_timeout_ts trigger (should finally fix lingering close)
173  * mod_rewrite: add url.rewrite-[repeat-]if-not-file to rewrite if file doesn't exist or is not a regular file (fixes #985, thx lucas aerbeydt)
174  * Add TLS servername indication (SNI) support (fixes #386, thx Peter Colberg <[email protected]>)
175  * Add SSL Client Certificate verification (#1288)
176  * mod_fastcgi: Fix host->active_procs counter, return 503 if connect wasn't successful after 5 tries (fixes #1825)
177  * mod_accesslog: escape special characters (fixes #1551, thx icy)
178  * fix mod_webdav crash from #1793 (fixes #2084, thx hiroya)
179  * Don't print ssl error if client didn't support TLS SNI
180  * Fix linger close timeout handling, drop timeout to 5 seconds (fixes #2086)
181  * Fix broken return values from int to enum in mod_fastcgi
182
183- 1.4.23 - 2009-06-19
184  * Added some extra warning options in cmake and fix the resulting warnings (unused/static functions)
185  * New lighttpd man page (moved it to section 8) (fixes #1875)
186  * Create rrd file for empty rrdfile in mod_rrdtool (#1788)
187  * Fix workaround for incorrect path info/scriptname if fastcgi prefix is "/" (fixes #729)
188  * Finally removed spawn-fcgi
189  * Allow xattr to overwrite mime type (fixes #1929)
190  * Remove link from errormsg about fastcgi apps (fixes #1942)
191  * Strip trailing dot from "Host:" header
192  * Remove the optional port info from SERVER_NAME (thx Mr_Bond)
193  * Fix mod_proxy RoundRobin (off by one problem if only one backend is up)
194  * Rename configure.in to configure.ac, with small cleanups (fixes #1932)
195  * Add proper SUID bit detection (fixes #416)
196  * Check for regular file in mod_cgi, so we don't try to start directories
197  * Include mmap.h from chunk.h to fix some problems with #define mmap mmap64 (fixes #1923)
198  * Add support for pipe logging for server.errorlog (fixes #296)
199  * Add revision number to package version for svn/git checkouts
200  * Use server.tag for SERVER_SOFTWARE if configured (fixes #357)
201  * Fix trailing zero char in REQUEST_URI after "strip-request-uri" in mod_fastcgi
202  * mod_magnet: Add env["request.remote-ip"] (fixes #1740)
203  * mod_magnet: Add env["request.path-info"]
204  * Change name/version separator back to "/" (affects every place where the version is printed)
205  * Fix bug with FastCGI request id overflow under high load; just use always id 1 as we don't use multiplexing. (thx jgray)
206  * Add some dirlisting enhancements (fixes #1458)
207  * Add option to enable TCP_DEFER_ACCEPT (fixes #1447)
208  * Limit amount of bytes read for one read-event (fixes #1070)
209  * Add evasive.silent option (fixes #1438)
210  * Make mod_extforward headers configurable (fixes #1545)
211  * Add '%_' pattern for complete hostname in mod_evhost (fixes #1737)
212  * Add IPv6 support to mod_proxy (fixes #1537)
213  * mod_ssi printenv: print cgi env, add environment vars to cgi env (fixes #1713)
214  * Fix error message if no auth backend was set
215  * Fix SERVER_NAME port stripping (fixes #1968)
216  * Fix x-sendfile 2gb limiting (fixes #1970)
217  * Fix mod_cgi environment keys mangling (fixes #1969)
218  * Fix workaround for incorrect path info/scriptname if scgi prefix is "/" (fixes #729)
219  * Fix max-age value in mod_expire for 'modification' (fixes #1978)
220  * Fix evasive.silent option (#1438)
221  * Fix mod-fastcgi counters
222  * Modify fastcgi error message
223  * Backup errno for later usage (reported by Guido Reina via mailinglist)
224  * Improve FastCGI performance (fixes #1999)
225  * Workaround broken operating systems: check for trailing '/' in filenames (fixes #1989)
226  * Allow using pcre with cross-compiling (pcre-config got fixed; fixes #1986)
227  * Add "lighty.req_env" table to mod_magnet for setting/getting environment values for cgi (fixes #1967, thx presbrey)
228  * Fix segfault in mod_expire after failed config parsing (fixes #1992)
229  * Add ssi.content-type option (default text/html, fixes #615)
230  * Add support for "real" entropy from /dev/[u]random (fixes #1977)
231  * Adding support for additional chars in LDAP usernames (fixes #1941)
232  * Ignore multiple "If-None-Match" headers (only use first one, fixes #753)
233  * Fix 100% cpu usage if time() < 0 (thx to gaspa and cate, fixes #1964)
234  * Allow max-keep-alive-requests to depend on conditional (fixes #1881)
235  * Make dependency on svnversion/git optional (for devel versionstamp, fixes #2009)
236
237- 1.4.22 - 2009-03-07
238  * Fix wrong lua type for CACHE_MISS/CACHE_HIT in mod_cml (fixes #533)
239  * Fix default vhost in mod_simple_vhost (fixes #1905)
240  * Handle EINTR in mod_rrdtool (fixes #604)
241  * Fix rrd error after graceful restart (fixes #419)
242  * Fix EAGAIN handling for freebsd sendfile (fixes #1913, thx AnMaster for spotting the problem)
243  * Fix segfault in mod_scgi (fixes #1911)
244  * Treat EPIPE as connection-closed error in network_freebsd_sendfile.c (another fix from #1913)
245  * Fix useless redirection of stderr in mod_rrdtool, as it gets redirected to /dev/null later. (fixes #1922)
246  * Fix some problems with more strict compilers (#1923)
247  * Fix segfault if siginfo_t* is NULL in sigaction handler (fixes #1926)
248
249- 1.4.21 - 2009-02-16
250
251  * Fix base64 decoding in mod_auth (#1757, thx guido)
252  * Fix mod_cgi segfault when bound to unix domain socket (#653)
253  * Do not rely on ioctl FIONREAD (#673)
254  * Now really fix mod auth ldap (#1066)
255  * Fix leaving zombie process with include_shell (#1777)
256  * Removed debian/, openwrt/ and cygwin/; they weren't kept up-to-date, and we decided to remove dist. specific stuff
257  * Try to convert string options to shorts for numeric options in config file; allows to use env-vars for numeric options. (#1159, thx andrewb)
258  * Do not cache default vhost in mod_simple_vhost (#709)
259  * Trust pcre-config, do not check for pcre manually (#1769)
260  * Fix fastcgi authorization in subdirectories with check-local=disabled; don't split pathinfo for authorizer. (#963)
261  * Add possibility to disable methods in mod_compress (#1773)
262  * Fix duplicate connection keep-alive/transfer-encoding headers (#960)
263  * Fixed fix for round-robin in mod_proxy (forgot to increment the index) (#1715)
264  * Fix fastcgi-authorizer handling; Status: 200 is now accepted as the doc requests
265  * Compare address family in inet_ntop_cache
266  * Revert CVE-2008-4359 (#1720) fix "encoding+simplifying urls for rewrite/redirect": too many regressions.
267  * Use FD_CLOEXEC if possible (fixes #1821)
268  * Optimized buffer usage in mod_proxy (fixes #1850)
269  * Fix uninitialized value in time struct after strptime
270  * Do not pass Proxy-Connection: header from client to backend http server in mod_proxy (#1877)
271  * Fix wrong malloc sizes in mod_accesslog (probably nothing bad happened...) (fixes #1855, thx ycheng)
272  * Some small buffer.c fixes (closes #1837)
273  * Remove floating point math from server.c (fixes #1402)
274  * Disable SSLv2 by default
275  * Use/enforce sane max-connection values (fixes #1803)
276  * Allow mod_compress to return 304 (Not Modified); compress ignores the static-file.etags option.(fixes #1884)
277  * Add option to ignore the "Expect: 100-continue" header instead of returning 417 Expectation failed (closes #1017)
278  * Use modified etags in mod_compress (fixes #1800)
279  * Fix max-connection limit handling/100% cpu usage (fixes #1436)
280  * Fix error handling in freebsd-sendfile (fixes #1813)
281  * Silenced the annoying "request timed out" warning, enable with the "debug.log-timeouts" option (fixes #1529)
282  * Allow tabs in header values (fixes #1822)
283  * Added Language conditional (fixes #1119); patch by petar
284  * Fix wrong format strings (#1900, thx stepancheg)
285
286- 1.4.20 - 2008-09-30
287
288  * Fix mod_compress to compile with old gcc version (#1592)
289  * Fix mod_extforward to compile with old gcc version (#1591)
290  * Update documentation for #1587
291  * Fix #285 again: read error after SSL_shutdown (thx [email protected]) and clear the error queue before some other calls (CVE-2008-1531)
292  * Fix mod_magnet: enable "request.method" and "request.protocol" in lighty.env (#1308)
293  * Fix segfault for appending matched parts if there was no regex matching (just give empty strings) (#1601)
294  * Use data_response_init in mod_fastcgi x-sendfile handling for response.headers, fix a small "memleak" (#1628)
295  * Don't send empty Server headers (#1620)
296  * Fix conditional interpretation of core options
297  * Enable escaping of % and $ in redirect/rewrite; only two cases changed their behaviour: "%%" => "%", "$$" => "$"
298  * Fix accesslog port (should be port from the connection, not the "server.port") (#1618)
299  * Fix mod_fastcgi prefix matching: match the prefix always against url, not the absolute filepath (regardless of check-local)
300  * Overwrite Content-Type header in mod_dirlisting instead of inserting (#1614), patch by Henrik Holst
301  * Handle EINTR in mod_cgi during write() (#1640)
302  * Allow all http status codes by default; disable body only for 204,205 and 304; generate error pages for 4xx and 5xx (#1639)
303  * Fix mod_magnet to set con->mode = p->id if it generates content, so returning 4xx/5xx doesn't append an error page
304  * Remove lighttpd.spec* from source, fixing all problems with it ;-)
305  * Do not rely on PATH_MAX (POSIX does not require it) (#580)
306  * Disable logging to access.log if filename is an empty string
307  * Implement a clean way to open /dev/null and use it to close stdin/out/err in the needed places (#624)
308  * merge spawn-fcgi changes from trunk (from @2191)
309  * let spawn-fcgi propagate exit code from spawned fcgi application
310  * close connection after redirect in trigger_b4_dl (thx icy)
311  * close connection in mod_magnet if returned status code
312  * fix bug with IPv6 in mod_evasive (#1579)
313  * fix scgi HTTP/1.* status parsing (#1638), found by [email protected]
314  * [tests] fixed system, use foreground daemons and waitpid
315  * [tests] removed pidfile from test system
316  * [tests] fixed tests needing php running (if not running on port 1026, search php in env[PHP] or /usr/bin/php-cgi)
317  * fixed typo in mod_accesslog (#1699)
318  * replaced buffer_{append,copy}_string with the _len variant where possible (#1732) (thx crypt)
319  * case insensitive match for secdownload md5 token (#1710)
320  * Handle only HEAD, GET and POST in mod_dirlisting (same as in staticfile) (#1687)
321  * fixed mod_secdownload problem with unsigned time_t (#1688)
322  * handle EAGAIN and EINTR for freebsd sendfile (#1675)
323  * Use filedescriptor 0 for mod_scgi spawn socket, redirect STDERR to /dev/null (#1716)
324  * fixed round-robin balancing in mod_proxy (#1715)
325  * fixed EINTR handling for waitpid in mod_fastcgi
326  * mod_{fast,s}cgi: overwrite environment variables (#1722)
327  * inserted many con->mode checks; they should prevent two modules to handle the same request if they shouldn't (#631)
328  * fixed url encoding to encode more characters (#266)
329  * allow digits in [s]cgi env vars (#1712)
330  * fixed dropping last character of evhost pattern (#161)
331  * print helpful error message on conditionals in global block (#1550)
332  * decode url before matching in mod_rewrite (#1720) -- (reverted for 1.4.21)
333  * fixed conditional patching of ldap filter (#1564)
334  * Match headers case insensitive in response (removing of X-{Sendfile,LIGHTTPD-*}, catching Date/Server) [2281]
335  * fixed bug with case-insensitive filenames in mod_userdir (#1589), spotted by "anders1" (CVE-2008-4360)
336  * fixed format string bugs in mod_accesslog for SYSLOG
337  * replaced fprintf with log_error_write in fastcgi debug
338  * fixed mem leak in ssi expression parser (#1753), thx Take5k
339  * hide some ssl errors per default, enable them with debug.log-ssl-noise (#397)
340  * do not send content-encoding for 304 (#1754), thx yzlai
341  * fix segfault for stat_cache(fam) calls with relative path (without '/', can be triggered by x-sendfile) (#1750)
342  * fix splitting of auth-ldap filter
343  * workaround ldap connection leak if a ldap connection failed (restarting ldap)
344  * fix auth.backend.ldap.bind-dn/pw problems (only read from global context for temporary ldap reconnects, thx ruskie)
345  * fix memleak in request header parsing (#1774, thx qhy) (CVE-2008-4298)
346  * fix mod_rewrite memleak/endless loop detection (#1775, thx phy - again!)
347  * use decoded url for matching in mod_redirect (#1720) (CVE-2008-4359) -- (reverted for 1.4.21)
348
349- 1.4.19 - 2008-03-10
350
351  * added support for If-Range: <date> (#1346)
352  * added support for matching $HTTP["scheme"] in configs
353  * fixed initgroups() called after chroot (#1384)
354  * fixed case-sensitive check for Auth-Method (#1456)
355  * execute fcgi app without /bin/sh if used as argument to spawn-fcgi (#1428)
356  * fixed a bug that made /-prefixed extensions being handled also when
357    matching the end of the uri in fcgi,scgi and proxy modules (#1489)
358  * print error if X-LIGHTTPD-send-file cannot be done; reset header
359    Content-Length for send-file. Patches by Stefan Buehler
360  * prevent crash in certain php-fcgi configurations (#841)
361  * add IdleServers and Scoreboard directives in ?auto mode for mod_status (#1507)
362  * open log immediately after daemonizing, fixes SIGPIPEs on startup  (#165)
363  * HTTPS env var should be "on" when using mod_extforward and the X-Forwarded-Proto header is set. (#1499)
364  * generate ETag and Last-Modified headers for mod_ssi based on newest modified include (#1491)
365  * support letterhomes in mod_userdir (#1473)
366  * support chained proxies in mod_extforward (#1528)
367  * fixed bogus "cgi died ?" if we kill the CGI process on shutdown
368  * fixed ECONNRESET handling in network-openssl
369  * fixed handling of EAGAIN in network-linux-sendfile (#657)
370  * reset conditional cache (#1164)
371  * create directories in mod_compress (was broken with alias/userdir) (#1027)
372  * fixed out of range access in fd array (#1562, #372) (CVE-2008-0983)
373  * mod_compress should check if the request is already handled, e.g. by fastcgi (#1565)
374  * remove broken workaround for buggy Opera version with ssl/chunked encoding (#285)
375  * generate etag/last-modified header for on-the-fly-compressed files (#1171)
376  * req-method OPTIONS: do not insert default response if request was denied, do not deny OPTIONS by default (#1324)
377  * fixed memory leak on windows (#1347)
378  * fixed building outside of the src dir (#1349)
379  * fixed including of stdint.h/inttypes.h in etag.c (#1413)
380  * do not add Accept-Ranges header if range-request is disabled (#1449)
381  * log the ip of failed auth tries in error.log (enhancement #1544)
382  * fixed RoundRobin in mod_proxy (#516)
383  * check for symlinks after successful pathinfo matching (#1574)
384  * fixed mod-proxy.t to run with a builddir outside of the src dir
385  * do not suppress content on "307 Temporary Redirect" (#1412)
386  * fixed Content-Length header if response body gets removed in connections.c (#1412, part 2)
387  * do not generate a "Content-Length: 0" header for HEAD requests, added test too
388  * remove compress cache file if compression or write failed (#1150)
389  * fixed body handling of status 300 requests
390  * spawn-fcgi: only try to connect to unix socket (not tcp) before spawning (#1575)
391  * fix sending source of cgi script instead of 500 error if fork fails (CVE-2008-1111)
392  * fix min-procs handling in mod_scgi.c, just set to max-procs (patch from #623)
393  * fix sending "408 - Timeout" instead of "410 - Gone" for timedout urls in mod_secdownload (#1440)
394  * workaround #1587: require userdir.path to be set to enable mod_userdir (empty string allowed) (CVE-2008-1270)
395  * make configure checks for --with-pcre, --with-zlib and --with-bzip2 failing if the headers aren't found
396  * fixed handling of waitpid() == EINTR mod_ssi on solaris
397
398- 1.4.18 - 2007-09-09
399
400  * fixed compile error on IRIX 6.5.x on prctl() (#1333)
401  * fixed forwarding a SIGINT and SIGHUP when using max-workers (#902)
402  * fixed FastCGI header overrun in mod_fastcgi (reported by [email protected])
403  * fixed hanging redirects with keep-alive due to missing
404    "Content-Length: 0" headers
405  * fixed crashing when using undefined environment variables in the config
406  * fixed compilation of mod_mysql_vhost on irix (#1341)
407
408- 1.4.17 - 2007-08-29
409
410  * added dir-listing.set-footer in mod_dirlisting (#1277)
411  * added sending UID and PID for SIGTERM and SIGINT to the logs
412  * fixed hardcoded font-sizes in mod_dirlisting (#1267)
413  * fixed different ETag length on 32/64 platforms (#1279)
414  * fixed compression of files < 128 bytes by disabling compression (#1241)
415  * fixed mysql server reconnects (#518)
416  * fixed disabled keep-alive for dynamic content with HTTP/1.0 (#1166)
417  * fixed crash on mixed EOL sequences in mod_cgi
418  * fixed key compare (#1287)
419  * fixed invalid char in header values (#1286)
420  * fixed invalid "304 Not Modified" on broken timestamps
421  * fixed endless loop on shrinked files with sendfile() on BSD (#1289)
422  * fixed counter overrun in ?auto in mod_status (#909)
423  * fixed too aggresive caching of nested conditionals (#41)
424  * fixed possible overflow in unix-socket path checks on BSD (#713)
425  * fixed extra Content-Length header on 1xx, 204 and 304 (#1002)
426  * fixed handling of duplicate If-Modified-Since to return 304
427  * fixed extracting status code from NPH scripts (#1125)
428  * fixed prctl() usage (#1310)
429  * removed config-check if passwd files exist (#1188)
430  * fixed crash when etags are disabled but the client sends one (#1322)
431  * fixed crash when freeing the config in mod_alias
432  * fixed server.error-handler-404 breakage from 1.4.16 (#1270)
433  * fixed entering 404-handler from dynamic content (#948)
434  * added more debug infos for FAM based stat-cache
435  * use more LSB like paths in the sample config (#1242)
436
437- 1.4.16 - 2007-07-25
438
439  * added static-file.etags, etag.use-inode, etag.use-mtime, etag.use-size
440    to customize the generation of ETags for static files. (#1209)
441    (patch by <[email protected]>)
442  * fixed typecast of NULL on execl() (#1235)
443    (patch by F. Denis)
444  * fixed circumventing url.access-deny by trailing slash (#1230)
445  * fixed crash on duplicate headers with trailing WS (#1232)
446  * fixed accepting more connections then requested (#1216)
447  * fixed mem-leak in mod_auth (reported by Stefan Esser)
448  * fixed crash with md5-sess and cnonce not set in mod_auth (reported by Stefan Esser)
449  * fixed missing check for base64 encoded string in mod_auth and Basic auth
450    (reported by Stefan Esser)
451  * fixed possible crash in Auth-Digest header parser on trailing WS in
452    mod_auth (reported by Stefan Esser)
453  * fixed check on stale errno values, which broke handling of broken fastcgi
454    applications. (#1245)
455  * fixed crash on 32bit archs when debug-msgs are printed in mod_scgi, mod_fastcgi
456    and mod_webdav (#1263)
457
458- 1.4.15 - 2007-04-13
459
460  * fixed broken Set-Cookie headers
461
462- 1.4.14 - 2007-04-13
463
464  * fix crash if gethostbyaddr() failed on redirect [1718]
465  * properly handle 206 responses generated by *cgi scripts. (#755) [1716]
466  * added HTTPS=on to the environment of cgi scripts (#861) [1684]
467  * fix handling of 303 (#1045) [1678]
468  * made the configure check for lua more portable [1677]
469  * added mod_extforward module [1665]
470  * references to the fam stat cache engine should be conditional (#1039) [1664]
471  * fix http 500 errors (colin.stephen/at/o2.com) #1041 [1663]
472  * prevent wrong pidfile unlinking on graceful restart (Chris Webb) [1656]
473  * ignore empty packets from STDERR stream. #998
474  * fix a crash for files with an mtime of 0 reported by cubiq on irc [1519]
475    CVE-2007-1870
476  * allow empty passwords with ldap (J�rg Sonnenberger) [1516]
477  * mod_scgi.c segfault fix #964 [1501]
478  * Added round-robin support to mod_fastcgi [1500]
479  * Handle DragonFlyBSD the same way as Freebsd (J�rg Sonnenberger) [1492,1676]
480  * added now and weeks support to mod_expire. #943
481  * fix cpu hog in certain requests [1473] CVE-2007-1869
482  * fix for handling hostnames with trailing dot [1406]
483  * fixed header-injection via server.tag (#1106)
484  * disabled caching of files without a content-type to solve the
485    aggressive caching of FF
486  * remove trailing white-spaces from HTTP-requests before parsing (#1098)
487  * fixed accesslog.use-syslog in a conditional and the caching of the
488    accesslog for files (fixes #1064)
489  * fixed various crashes at startup on broken accesslog.format strings (#1000)
490  * fixed handling of %% in accesslog.format
491  * fixed conditional dir-listing.exclude (#930)
492  * reduced default PATH_MAX to 255 (#826)
493  * ECONNABORTED is not known on cygwin (#863)
494  * fixed crash on url.redirect and url.rewrite if %0 is used in a global context
495    (#800)
496  * fixed possible crash in debug-message in mod_extforward
497  * fixed compilation of mod_extforward on glibc < 2.3.4
498  * fixed include of empty in the configfiles (#1076)
499  * send SIGUSR1 to fastcgi children before SIGTERM. libfcgi wants SIGUSR1. (#737)
500  * fixed missing AUTH_TYPE entry in the fastcgi environment. (#889)
501  * fixed compilation in network_writev.c on MacOS X 10.3.9 (#903)
502  * added kill-signal as another setting for fastcgi backends. See the wiki for more.
503
504- 1.4.13 - 2006-10-09
505
506  * added initgroups in spawn-fcgi (#871)
507  * added apr1 support htpasswd in mod-auth (#870)
508  * added lighty.stat() to mod_magnet
509  * fixed segfault in splitted CRLF CRLF sequences
510    (introduced in 1.4.12) (#876)
511  * fixed compilation of LOCK support in mod-webdav
512  * fixed fragments in request-URLs (#869)
513  * fixed pkg-config check for lua5.1 on debian
514  * fixed Content-Length = 0 on HEAD requests without
515    a known Content-Length (#119)
516  * fixed mkdir() forcing 0700 (#884)
517  * fixed writev() on FreeBSD 4.x and older (#875)
518  * removed warning about a 404-error-handler
519    returned 404
520  * backported and fixed the buildsystem changes for
521    webdav locks
522  * fixed plugin loading so we can finally load lua
523    extensions in mod_magnet scripts
524  * fixed large uploads if xattr is enabled
525
526- 1.4.12 - 2006-09-23
527
528  * added experimental LOCK support for webdav
529  * added Content-Range support for PUT in webdav
530  * added support for += on empty arrays in config-files
531  * added ssl.cipher-list and ssl.use-sslv2
532  * added $HTTP["querystring"] conditional
533  * added mod_magnet as long-term replacement for mod_cml
534  * added work-around for a Opera Bug with SSL + Chunked-Encoding
535  * changed --print-config to print to stdout instead of stderr
536  * changed no longer use 0600 for new files with webdav. umask is
537    honored. Make sure you have set a proper umask.
538  * fixed upload hangs with SSL
539  * fixed connection drops with SSL (aka bad retry)
540  * fixed path traversal with \ on cygwin
541  * fixed mem-leak in mod_flv_streaming
542  * fixed required trailing newline in configfiles (#142)
543  * fixed quoting the autoconf files (#466)
544  * fixed empty Host: + $HTTP["host"] handling (#458)
545  * fixed handling of If-Modified-Since if ETag is not set
546  * fixed default-shell if SHELL is not set (#441)
547  * fixed appending and assigning of env.* vars
548  * fixed empty FCGI_STDERR packets
549  * fixed conditional server.allow-http-11
550  * fixed handling of follow-symlink + lstat()
551  * fixed SIGHUP handling if max-workers is used
552  * fixed "Software caused connection abort" messages on FreeBSD
553
554- 1.4.11 - 2006-03-09
555
556  * added ability to specify which ip address spawn-fci listens on
557    (agkr/at/pobox.com)
558  * added mod_flv_streaming to streaming Flash Movies efficiently
559  * fixed handling of error codes returned by mod_dav_svn behing a
560    mod_proxy
561  * fixed error-messages in mod_auth and mod_fastcgi
562  * fixed re-enabling overloaded local fastcgi backends
563  * fixed handling of deleted files in linux-sendfile
564  * fixed compilation on BSD and MacOSX
565  * fixed $SERVER["socket"] on a already bound socket
566  * fixed local source retrieval on windows
567    (secunia)
568  * fixed hanging cgi if remote side is dieing while reading
569    from the pipe (sandy/at/meebo.com)
570
571- 1.4.10 - 2006-02-08
572
573  * added docs for mod_dirlisting
574  * added fastcgi.map-extensions to mod_fastcgi
575  * fixed load balancing for mod_fastcgi
576  * fixed extra newline for syslog() in mod_accesslog
577  * fixed user-track cookie for IE in mod_usertrack
578  * fixed crash in digest handling in mod_auth
579  * fixed handling of 301 response-bodies from a mod_proxy backend
580  * fixed loading of base modules if server.modules is not set
581  * fixed broken cgi if mod_scgi is loaded
582
583- 1.4.9 - 2006-01-14
584
585  * added server.core-files option (sandy <sandy/at/meebo.com>)
586  * added docs for mod_status
587  * added mod_evasive to limit the number of connections by IP (<w1zzard/at/techpowerup.com>)
588  * added the power-magnet to mod_cml
589  * added internal statistics to mod_fastcgi
590  * added server.statistics-url to get internal statistics from mod_status
591  * added support for conditional range-requests through If-Range
592  * added static building via scons
593  * fixed 100% cpu loops in mod_cgi ("sandy" <sjen/at/cs.stanford.edu>)
594  * fixed handling for secure-download.timeout (jamis/at/37signals.com)
595  * fixed IE bug in content-charset in the output of mod_dirlisting (sniper/at/php.net)
596  * fixed typos and language in the docs (ryan-2005/at/ryandesign.com)
597  * fixed assertion in mod_cgi on HEAD request is Content-Length (<sandy/at/meebo.com>)
598  * fixed handling if equal but duplicate If-Modified-Since request headers
599  * fixed endless loops in mod_fastcgi if backend is dead
600  * fixed Depth: 1 handling in PROPFIND requests on empty dirs
601  * fixed encoding of UTF8 encoded dirlistings (Jani Taskinen <sniper/at/iki.fi>)
602  * fixed initial bind to a unix-domain socket through server.bind
603  * fixed handling of lowercase filesystems
604  * fixed duplicate request headers cause by mod_setenv
605
606- 1.4.8 - 2005-11-23
607
608  * added auto-reconnect to ldap-server in mod_auth
609    (joerg/at/netbsd.org)
610  * changed auth.ldap-cafile to be optional
611    (joerg/at/netbsd.org)
612  * added strip_request_uri in mod_fastcgi
613  * added more X-* headers to mod_proxy
614    (Ben Grimm <bengrimm/at/gmail.com>)
615  * added 'debug' to simple-vhost to suppress the
616    (mod_simple_vhost.c.157) No such file or directory /servers/ww.lighttpd.net/pages/
617    messages by default
618  * added support to let the server listen on UNIX-socket
619  * changed default stat-cache-engine to 'simple'
620  * removed debian/ dir from source package on request by packager
621  * fixed max-age timestamps in mod_expire
622  * fixed encoding the filenames in PROPFIND in mod_webdav
623  * fixed range request handling in network_writev
624  * fixed retry on connect error in mod_fastcgi
625    (Robert G. Jakabosky <bobby/at/alphatrade.com>)
626  * fixed possible crash in mod_webdav if sqlite3 support
627    is available but not use
628  * fixed fdvent-handler init if server.max-worker was used
629    (Siddharth Vijayakrishnan <mail/at/bluefireworks.net>)
630  * fixed missing cleanup in mysql_vhost
631  * fixed assert() in "connections.c:962:
632      connection_handle_read_state: Assertion 'c->mem->used' failed."
633  * fixed 64bit issue in md5
634  * fixed crash in mod_status
635  * fixed duplicate headers in mod_proxy
636  * fixed Content-Length in HEAD request in mod_proxy
637  * fixed unsigned/signed comparisions
638  * fixed streaming in mod_cgi
639  * fixed possible overflow in password-salt handling
640    (reported on slashdot by james-web/at/and.org)
641  * fixed server-traffic-limit if connection limit is not set
642
643- 1.4.7 - 2005-11-02
644
645  * added FD_CLOEXEC to fds which are kept open for a longer time
646  * added smaller, moving mmaped windows to network_writev
647  * added madvise() to instruct the kernel the do proper read-ahead in network_writev
648  * added support for %I in mod_accesslog
649  * added better compat to Apache for ?auto in mod_status
650  * added support for userdirs without a entry in /etc/passwd in mod_userdir
651    (rob/at/inversepath.com)
652  * added startup-time selectable network-backend
653  * added location of upload-files to config as array
654  * added webdav.log-xml for logging xml-content in mod_webdav
655  * added Cache-Control: max-age to mod_expire
656  * workaround missing client-bug by assuming we received a close-notify on
657    non-keep-alive requests in SSL request
658  * disabled kerberos5 support by default to fix compilation on RHEL
659  * fixed order of library checks to fix compilation on Solaris 9
660  * fixed open file-descriptors on read-error
661  * fixed crash if /var/tmp is not writable
662
663- 1.4.6 - 2005-10-09
664
665  * fixed compilation on MacOS X and cygwin
666  * fixed compressed output if caching was disabled (seen in IE and Opera)
667  * fixed range-request option
668  * fixed mysql-vhost module (was broken in 1.4.5)
669  * fixed false positive in the detection of case-insensitive FS
670
671- 1.4.5 - 2005-10-02
672
673  * added all DeltaV methods as known methods
674  * added buffer-to-disk of request content
675  * added warning for unused variables in conditionals
676  * added global index-generators to mod_indexfile
677  * fixed caching for remote-ip conditionals with keep-alive
678  * fixed redirects with content
679  * fixed infinite loop in exec-cmd in mod_ssi
680  * fixed segfault in config handling for mod_mysql_vhost
681  * fixed segfault on FIFOs/Sockets
682  * fixed possible crash on uninit memory if If-Modified-Since was too long
683  * fixed accounting of mem-chunks
684  * fixed starving of connections on high load
685  * fixed crc errors in mod_compress on 64bit platforms
686  * fixed handling of overlapping fastcgi packets (bug added in 1.4.4)
687  * fixed logic of conditionals if a header was not set
688  * fixed a segfault in mod_rewrite if %1 references were used
689  * fixed handling of empty request URIs in HTTP requests
690
691- 1.4.4 - 2005-09-16
692  * added support for %V in mod_accesslog
693  * added a option for a FastCGI responser to send static files
694  * added md5 and blowfish hashes to htpasswd
695  * fixed METHOD in mod_accesslog of WebDAV methods
696  * fixed check for permission before files in sent
697  * fixed mod-proxy and content for non-POST requests
698  * fixed compilation of mod_cml on MacOS X
699  * fixed SSL errmsg after accept()
700  * fixed memleak in stat-cache
701  * fixed aborted connections if file was moved while in transfer
702  * fixed mem-usage for large FastCGI transfers
703
704- 1.4.3 - 2005-09-01
705
706  * added gracefull shutdown
707  * added server.max-connections
708  * fixed compilation on all BSD platforms
709  * fixed init of kqueue and /dev/poll after daemonize
710  * fixed segfault if select() is event-handler and more than FD_SETSIZE
711    fds are opened
712  * fixed compilation of mod_cml
713  * fixed bin-copy-env in mod_fastcgi
714
715- 1.4.2 - 2005-08-29
716
717  * fixed mimetype detection on uppercase extensions
718  * fixed memleak in stat-cache
719  * fixed infinite loop in mod_cgi
720  * fixed alignment crashes on sparc64 and alpha64
721  * fixed test system for gentoo ebuild
722  * fixed infinite loop in SSL
723  * fixed range request for files > 2Gb
724
725- 1.4.1 - 2005-08-22
726
727  * added a complete Class 1 complient mod_webdav
728  * fixed ssl support (especially on OpenBSD)
729  * fixed response header in body problem in mod_cgi
730  * fixed numbers before body problem
731  * fixed compilation on Solaris and FreeBSD
732  * fixed conditional options in mod_dirlisting
733  * fixed segfault in mod_dirlisting for NFS directories
734  * fixed check for docroot in change-root environments
735
736- 1.4.0 - 2005-08-17
737
738  * added nested conditionals
739  * added remote-ip to $HTTP
740  * added support for stat-cache via FAM
741  * added a read-only WebDAV module
742  * fixed cleanup in mod_proxy and mod_fastcgi
743  * fixed handling of filenames on case-insensitive filesystems
744
745- 1.3.16 - 2005-07-31
746
747  * added Date: headers to dynamic HTTP/1.0 requests
748  * added support for OPTION * HTTP/1.1
749  * added support for accesslog to syslog
750  * added support for PATH_INFO guessing if check-local is disabled in
751      mod_fastcgi
752  * added switch to disable range-requests
753  * added valid-user option for mod_auth (tigger at gentoo.org)
754  * added JavaScript based sorting to mod_status (erik)
755  * added selective TCP_CORK (Christian von Roques)
756  * break up endless loops with Status: 500
757  * fixed endless loops in mod_rewrite
758  * mapped url.rewrite and url.rewrite-final to uri.rewrite-once
759  * fixed compilation for mod_trigger_b4_dl
760  * fixed 'can't reach host' in mod_proxy
761  * error-handler-404 defaults to Status: 200 and static files work now
762
763- 1.3.15 - 2005-07-15
764
765  * added mod_cml
766  * added mod_trigger_b4_dl
767  * added encoding to mod_dirlisting
768  * added ?auto to mod_status
769  * relaxed handling of characters in URIs even more
770  * fixed detection of sendfile() on Linux 2.4.x
771  * fixed comparision of buffers for short strings
772  * server.errorfile-prefix is now conditional
773  * fixed mod_rrdtool to close STDERR
774
775- 1.3.14 - 2005-06-15
776
777  * added SCGI support via mod_scgi
778  * added hash-based and round-robin load balancing to mod_proxy
779  * fixed range requests larger than 2Gb
780  * fixed compilation on Solaris
781  * fixed endless loops in mod_fastcgi, mod_cgi and mod_proxy
782  * fixed handling of URIs for '+' and characters > 127
783
784- 1.3.13 - 2005-03-06
785
786  * added customizable directory listings
787  * fixed compile error on all BSD unixes
788  * fixed PATHINFO handling for FastCGI
789  * fixed handling of remote-close on FreeBSD and OpenSSL
790
791- 1.3.12 - 2005-03-02
792
793  * added ssl.ca-file
794  * added support for \n\n as terminator
795  * rewrote test-framework and added more tests
796  * fixed cgi.assign with empty handler
797  * fixed segfault in debug-code
798  * fixed mod_expire if modification-timestamps are used
799  * fixed segfault on duplication Host-headers
800  * fixed endless loop in mod_fastcgi
801  * fixed handling of dead fastcgi-processes
802
803- 1.3.11 - 2005-02-20
804
805  * added REMOTE_PORT and SERVER_ADDR to CGI-env
806  * relaxed handling of newlines before keep-alive requests
807  * relaxed uri-parser again
808  * fixed PHP_SELF for php
809  * fixed compilation on MacOS X
810  * fixed handling of EPIPE and ECONNRESET
811  * fixed crash in mod_auth if config-options are missing
812  * fixed handling of missing trailing / in mod_userdir
813  * fixed conditional secdownload.secret
814  * fixed REPORT ME error due to failed reconnects in mod_fastcgi
815  * fixed cmdline handling in mod_fastcgi
816
817- 1.3.10 - 2005-02-06
818
819  * added support for full commandline in spawn-fcgi
820  * fixed missing check for IP-address in mod_fastcgi
821  * fixed compile error with openssl in mod_fastcgi
822  * removed a debug-message from network-functions
823
824- 1.3.9 - 2005-02-06
825
826  * added a stricter URI parser
827  * added a check to the CGI spawner if the cgi-handler exists
828  * added documentation for SSL and mod_status
829  * added handling of startup environment to FastCGI
830  * improved performance in FastCGI in buildind the FastCGI header
831  * fixed min-procs and max-procs in FastCGI on PowerPC
832  * fixed crash in setenv.add-response-header
833  * fixed handling of nph-scripts in CGI
834  * fixed accidently sending out physical file in CGI on error
835  * fixed cygwin support
836  * fixed handling of missing files
837  * fixed HEAD requests for dynamic requests
838
839- 1.3.8 - 2005-01-30
840
841  * added traffic shaping by remote host and virtual server
842  * added auto-spawning of FastCGI process on demand
843  * added virtual host based on MySQL
844  * added mod_setenv to add envirnoment and http headers on the fly
845  * added support for syslog in mod_accesslog
846  * improved output of mod_status
847  * improved debug output in request handling
848  * fixed build problems on netbsd 1.4.x and 1.5.x
849  * fixed status.url configuration
850  * fixed handling of != and !~ in configutation
851  * fixed special cases in keep-alive handling
852  * fixed timeout handling in handling POST requests
853  * fixed mode AUTHORIZER in FastCGI
854  * fixed handling if internal redirects if no Host: is supplied
855  * fixed mod_alias + pathinfo
856  * fixed directory indexes and permissions
857  * enabled sending errorlog to syslog again
858
859- 1.3.7 - 2004-12-11
860
861  * added retries for a fastcgi connect if a php-childs
862    dies at startup
863  * update the debian directory
864  * added setgroups() to drop all group-privs
865  * added native port to windows via mingw32
866  * added server.tag = '...'
867  * added support for ${...} in mod_ssi
868  * ported all plugins to conditional support
869  * fixed multipart handling in cgi
870  * fixed kqueue event-handler
871  * fixed wrap-around in mod_status
872  * fixed crash with SSL + FastCGI
873  * fixed detection of SSL headers
874  * fixed handling of dangling SSL_shutdown
875  * fixed detection of keep-alive of Firefox
876
877- 1.3.6 - 2004-11-03
878
879  * added spawn-fcgi to the distribution
880  * added support in fastcgi module to spawn fastcgi
881    processes itself
882  * fixed logfile cycling if external logging is used
883  * fixed connection handling in fastcgi if no chunk
884    encoding is used
885  * fixed internal redirects on directories if a query
886    string is supplied
887  * fixed cgi-module for POST request above 4k
888  * fixed mod_alias and follow-symlink
889
890- 1.3.5 - 2004-10-31
891
892  * added mod_alias
893  * added mod_userdir
894  * added the exec command to the SSI handler
895  * added a switch to disable follow-symlinks
896  * added a switch to disable IPv6 at compile-time
897  * fixed compilation on FreeBSD and NetBSD 1.3.x
898  * fixed segfault in pipelining
899  * fixed a segfault in writev() handler if LFS is used
900
901- 1.3.4 - 2004-10-24
902
903  * added limiter for open files
904  * added logging of user supplied data to accesslogs
905  * added build target for OpenWRT
906  * added plain backend support for auth-digest
907  * fixed handling the external accesslog processes
908  * fixed SERVER_NAME in CGI and FastCGI
909
910- 1.3.3 - 2004-10-16
911
912  * added support for NL terminators in CGI-scripts
913  * added support for conditionals in mod_auth,
914    mod_simple_vhost and mod_evhost
915  * added a error-handler for 404 codes
916  * fixed request counter in the rrdtool module
917  * fixed log-file cycling
918  * fixed seg-fault
919
920- 1.3.2 - 2004-09-30
921
922  * fixed file-cache
923
924- 1.3.1 - 2004-09-30
925
926  * fixed file-cache
927  * fixed parsing of IPv6 adresses
928  * fixed cgi for cygwin
929  * fixed test-suite for FreeBSD and IRIX
930  * fixed handling of shrinked files
931  * fixed handling of REQUEST_URI after rewrite
932
933- 1.3.0 - 2004-09-17
934
935  * added build for MacOS X and Cygwin
936  * added handling of more than one socket
937  * added config-conditions for User-Agent and Referer
938  * added final rewrite-rules
939
940- 1.2.8 - 2004-09-11
941
942  * added a cache for mimetypes
943  * added X-Forwarded-For for mod_proxy
944  * fixed handling of comments in If-Modified-Since
945  * fixed error handling in FastCGI code
946  * fixed expire plugin for second Expire header
947
948- 1.2.7 - 2004-09-04
949
950  * added mod_rrdtool for internal statistics
951  * added xattr support
952  * added user-controlable timeouts
953  * improved documentation for many plugins
954  * fixed POST requests for mod_proxy
955  * fixed rare hang with CGI
956  * fixed seg-fault if no configfile is specified
957  * fixed rare problem in FastCGI header generation
958
959- 1.2.6 - 2004-08-26
960
961  * added apache-like accesslog definition
962  * enabled timestamp cache again
963  * improved performance in the string compare functions
964  * fixed double-free in fastcgi handler
965  * fixed error-handling in cgi handler
966
967- 1.2.5 - 2004-08-10
968
969  * added skeleton for solaris 10 port-API
970  * added compression support even if no cachedir is set
971  * added conditional configoptions
972  * fixed compilation on OpenBSD
973  * fixed kqueue support
974  * fixed pipelining bug
975  * fixed parallel build (triggered by Gentoo)
976  * updated debian postinst
977
978- 1.2.4 - 2004-07-31
979
980  * added kqueue support
981  * added server-side includes (mod_ssi)
982  * fixed large post uploads in fastcgi
983  * fixed rt-signals handling of delayed events
984
985- 1.2.3 - 2004-07-10
986
987  * added a proxy module for Java and friends
988  * added support to pass accesslog through an external programm
989  * added mimetypes for text/css and text/javascript
990  * fixed index-files for FastCGI if webserver is in chroot
991  * fixed error messages of CGI process fails to exec()
992  * fixed detection of pcre on IRIX and FreeBSD
993  * fixed timestamps in Last-Modified checks
994  * fixed 64bit builds
995  * fixed mmap-caching of large files
996  * relaxed the HTTP parser on empty headerfields
997
998- 1.2.2 - 2004-06-15
999
1000  * added support for unix domain sockets in FastCGI
1001  * fixed mmap caching
1002  * fixed compile-time check for linux sendfile()
1003  * fixed check for pcre.h on Fedora Core 2
1004
1005- 1.2.1 - 2004-05-30
1006
1007  * added experimental support for AIX send_file()
1008  * added an mmap cache to the filehandle cache
1009  * enabled FreeBSD sendfile support again
1010  * added support for calling CGI binaries directly
1011  * fixed pipelining for POST requests
1012  * fixed some seg-faults if no configfile is used
1013
1014- 1.2.0 - 2004-05-17
1015
1016  * added conforming Expect: handling
1017  * added a module for secure and fast downloading
1018  * rewrote the event handling interface
1019  * fixed array handling which might lead to 'missing header'
1020  * fixed pipelining support
1021  * fixed build of the localizer extension
1022  * fixed cgi handling for headers which are flushed to often
1023  * fixed compilation on Solaris 2.5
1024
1025- 1.1.9 - 2004-04-29
1026
1027  * added AUTHORIZER mode to the FastCGI module
1028  * added 'check-local' option to disable local stat() in the FastCGI module
1029  * added prefix-notation for FastCGI module
1030  * added 'mod_usertrack'
1031  * improved CGI/FastCGI spec conformance
1032  * more code cleanup
1033  * fixed HTTP/1.1 chunk headers
1034  * fixed POST handling
1035  * fixed SSL network handler
1036  * fixed writev() network handler
1037
1038- 1.1.8 - 2004-04-16
1039
1040  * code cleanup
1041  * limiting the size of the request-body and the request-header
1042  * minor speed improvements
1043  * tightend the HTTP-Parser again
1044
1045- 1.1.7 - 2004-04-12
1046
1047  * added REMOTE_USER to the Server->FastCGI parameters
1048  * added bzip2 compression
1049  * improved the error-messages from the new configfile parser
1050  * fixed accesslog writing for errornous requests
1051  * fixed LFS (64bit filesizes) handling
1052  * fixed Content-Length for HEAD requests
1053  * fixed some memory leaks in the configfile parser
1054
1055- 1.1.6 - 2004-04-10
1056
1057  * tightend the HTTP-Parser
1058  * rewrote the configfile parser (based on lemon)
1059  * fixed openssl support
1060  * fixed mmap+write support
1061  * use localtime in accesslog if possible
1062
1063- 1.1.5 - 2004-04-07
1064
1065  * added ldap backend to the auth
1066  * added a mod_expire
1067  * added debian packaging structure
1068  * merged redhat and suse spec-file
1069  * fixed eventhandler for solaris
1070  * fixed 64bit fileoffsets
1071  * fixed permissions of the PID-file
1072
1073- 1.1.4 - 2004-04-04
1074
1075  * added server.pid-file
1076  * added support for solaris /dev/poll and solaris sendfilev()
1077  * added support for writev()
1078  * added PATHINFO support (again)
1079  * fixed CLF logfile writing
1080
1081- 1.1.3 - 2004-03-25
1082
1083  * set default event-handler to 'poll'
1084  * fixed logcycling in chroot()
1085  * fixed hostname detection
1086  * added syslog() as fallback for error-logging
1087
1088- 1.1.2 - 2004-03-22
1089
1090  * added a "docroot" setting for fastcgi processes
1091  * performance improvements
1092  * improved configure script
1093  * rewrote the fastcgi config parser
1094  * added a rc-script for RedHat
1095  * added epoll() support for Linux 2.6.x
1096
1097- 1.1.1 - 2004-03-15
1098
1099  * added localizer module
1100  * performance improvements
1101  * code cleanup
1102
1103- 1.1.0 - 2004-03-06
1104
1105  * changed some configuration keys for better readability
1106  * moved the virtual-host code to mod_simple_vhost
1107  * added enhanced virtual host plugin from Christian Kruse
1108  * added two new auth-backends (htpasswd, htdigest)
1109  * fixed and improved authentification
1110  * stricter parsing of the Host: field
1111  * added a warning for unused configuration keys
1112  * improved FastCGI documentation
1113
1114- 1.0.3 - 2004-02-13
1115
1116  * a startup script has been added (LSB compliant)
1117  * HEAD requests were submitting the content like a GET request
1118  * the virtual directory listing got a face-lifting and fixes
1119  * request-headers are now handled case-in-sensitive as required
1120    by the standard. this fixes POST requests for w3m and some Proxies.
1121
1122- 1.0.2 - 2004-02-07
1123
1124  * rearrangement of the default configfile
1125  * some updates in the documentation
1126  * a entry in the error-log for a 404
1127  * stdout is no longer the default for the accesslog
1128