Commit Graph

719 Commits (396a92306648266e1df60d1d12d07b7f4d01b9d9)

Author SHA1 Message Date
Glenn Strauss 529cf9547e [doc] NEWS 2 years ago
Glenn Strauss 992ba517ab [doc] NEWS 2 years ago
Glenn Strauss 91250ee0bd [doc] NEWS 2 years ago
Glenn Strauss b8e011d230 [doc] NEWS 3 years ago
Glenn Strauss 008533e355 [doc] NEWS 3 years ago
Glenn Strauss c752d4696e [multiple] correct misspellings in comments
x-ref:
  "Script for fixing spelling errors with codespell"
  https://redmine.lighttpd.net/boards/3/topics/8947
3 years ago
Glenn Strauss b1048b2349 [doc] NEWS 3 years ago
Glenn Strauss 445ce2c44f [doc] NEWS 4 years ago
Glenn Strauss 4d3447fd44 [doc] NEWS 4 years ago
Glenn Strauss e0d1528860 [doc] NEWS 5 years ago
Glenn Strauss c9a64d94fc - next is 1.4.52 5 years ago
Glenn Strauss 0828010eb6 [doc] NEWS 5 years ago
Glenn Strauss a9e131fa37 - next is 1.4.51 5 years ago
Glenn Strauss a2114a1c9b [doc] NEWS 5 years ago
Glenn Strauss ae54806dc2 - next is 1.4.50 5 years ago
Glenn Strauss d0d5d4267b [doc] NEWS 5 years ago
Glenn Strauss de937f47f8 - next is 1.4.49 6 years ago
Glenn Strauss 2c7d70eddb [doc] NEWS 6 years ago
Glenn Strauss 5a5ce3dc75 [doc] NEWS - fix improper format line breaks 6 years ago
Glenn Strauss 6a17133a75 - next is 1.4.48 6 years ago
Glenn Strauss f558fc9735 [doc] NEWS 6 years ago
Glenn Strauss 0c1aed55d5 [doc] use https:// URLs to .lighttpd.net resources 6 years ago
Glenn Strauss 5780d6cc58 - next is 1.4.47 6 years ago
Glenn Strauss f07bcb145c [doc] NEWS 6 years ago
Glenn Strauss b0d63e31e8 - next is 1.4.46 6 years ago
Glenn Strauss 4f00aafcde [doc] NEWS 6 years ago
Glenn Strauss 656f9e454d - next is 1.4.45 7 years ago
Glenn Strauss 367bc5fd28 [doc] NEWS 7 years ago
Stefan Bühler d352790331 [mod_authn_gssapi] fix memory leak 7 years ago
Stefan Bühler 5e3653dc5d [mod_scgi] fix segfault (fixes #2762) 7 years ago
Glenn Strauss 33e3504bcb - next is 1.4.44 7 years ago
Glenn Strauss 738ebd5b29 [doc] NEWS 7 years ago
Glenn Strauss 22c560c228 - next is 1.4.43 7 years ago
Glenn Strauss 3468974e0b [doc] NEWS 7 years ago
Glenn Strauss ccd817d3c9 - next is 1.4.42 7 years ago
Glenn Strauss 29fa805695 [doc] NEWS 7 years ago
Glenn Strauss 8f8fa606ca - next is 1.4.41 7 years ago
Glenn Strauss 268c5582b2 [doc] NEWS 7 years ago
Glenn Strauss fd6a66b463 [doc] NEWS 7 years ago
Glenn Strauss 488688301e [doc] NEWS 7 years ago
Glenn Strauss 239c7e3026 [doc] NEWS 7 years ago
Glenn Strauss 01ec2c458c [doc] NEWS 7 years ago
Glenn Strauss 0f7c068010 [doc] NEWS 7 years ago
Glenn Strauss 8f255d35df [doc] NEWS 7 years ago
Glenn Strauss 49c74fff65 [core] compile with upcoming openssl 1.1.0 release (fixes #2727)
(thx falemagn)

x-ref:
  "Won't compile with OpenSSL 1.1.0"
  https://redmine.lighttpd.net/issues/2727
7 years ago
Glenn Strauss 77bd45121c [core] retry tempdirs on partial write, ENOSPC (fixes #2588)
Previous code would fail on partial write, EINTR, and ENOSPC.
Upon any of the above errors, this patch tries next tempdir in list,
if list of tempdirs provided by config option server.upload-dirs

x-ref:
  "Problem when uploading large files"
  https://redmine.lighttpd.net/issues/2588

github:
Closes #54
7 years ago
Glenn Strauss 71ed1912c7 [config] server.listen-backlog option (fixes #1825, #2116)
See doc/config/lighttpd.conf for explanation of listen() backlog queue

Additionally, mod_fastcgi and mod_scgi backend servers can now also be
configured with separate listen-backlog settings per server

x-ref:
  "add server.listen-backlog option instead of hard-coded value (128 * 8) for listen()"
  https://redmine.lighttpd.net/issues/2116
  "Don't disable backend when overloaded"
  https://redmine.lighttpd.net/issues/1825

github:
Closes #50
7 years ago
Glenn Strauss a65c57a548 [core] open fd when appending file to cq (fixes #2655)
http_chunk_append_file() opens fd when appending file to chunkqueue.
Defers calculation of content length until response is finished.

This reduces race conditions pertaining to stat() and then (later)
open(), when the result of the stat() was used for Content-Length
or to generate chunked headers.

Note: this does not change how lighttpd handles files that are modified
in-place by another process after having been opened by lighttpd --
don't do that.  This *does* improve handling of files that are
frequently modified via a temporary file and then atomically renamed
into place.

mod_fastcgi has been modified to use http_chunk_append_file_range() with
X-Sendfile2 and will open the target file multiple times if there are
multiple ranges.

Note: (future todo) not implemented for chunk.[ch] interfaces used by
range requests in mod_staticfile or by mod_ssi.  Those uses could lead
to too many open fds.  For mod_staticfile, limits should be put in place
for max number of ranges accepted by mod_staticfile.  For mod_ssi,
limits would need to be placed on the maximum number of includes, and
the primary SSI file split across lots of SSI directives should either
copy the pieces or perhaps chunk.h could be extended to allow for an
open fd to be shared across multiple chunks.  Doing either of these
would improve the performance of SSI since they would replace many file
opens on the pieces of the SSI file around the SSI directives.

x-ref:
  "Serving a file that is getting updated can cause an empty response or incorrect content-length error"
  https://redmine.lighttpd.net/issues/2655

github:
Closes #49
7 years ago
Glenn Strauss e0bafab2db [mod_indexfile] save physical path to env (fixes #448, #892)
save physical path to environment (PATH_TRANSLATED_DIRINDEX)
when index generator is full path (not relative path)

fix uri.path when index generator is full path (not relative path)
7 years ago
Glenn Strauss 186e7073fb [mod_redirect,mod-rewrite] short-circuit if blank replacement (fixes #2085)
x-ref:
  "null redirects for mod_redirect"
  https://redmine.lighttpd.net/issues/2085
7 years ago