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