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