summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* [mod_accesslog] %{mask}a to mask/anonymize IPGlenn Strauss2023-03-121-1/+0
| | | | | | | | | | | | | | | (thx pmconrad) IPv4: mask final octet (8 bits) of address IPv6: mask final 10 octets (80 bits) of address x-ref: Enable partial masking of IP addresses in access logs https://github.com/lighttpd/lighttpd1.4/pull/124 IP masking in Universal Analytics https://support.google.com/analytics/answer/2763052 github: closes #124
* [multiple] spelling: github action check-spellingGlenn Strauss2023-01-096-7/+7
|
* [multiple] codespell: correct spelling in commentsGlenn Strauss2023-01-072-2/+2
|
* [meson] add meson.build to install man pages (fixes #3181)Glenn Strauss2023-01-042-0/+2
| | | | | | x-ref: "Meson / CMake build issues" https://redmine.lighttpd.net/issues/3181
* [cmake] add doc/CMakeLists.txt to dist tar ball (#3181)Glenn Strauss2023-01-041-0/+1
| | | | | | x-ref: "Meson / CMake build issues" https://redmine.lighttpd.net/issues/3181
* [doc] remove references to removed modulesGlenn Strauss2023-01-036-194/+0
|
* [doc] default lighttpd.conf: omit server.use-ipv6Glenn Strauss2022-12-191-5/+1
| | | | | avoid lighttpd warning resulting from server.use-ipv6 = "enable" with unspecified or blank server.bind
* [core] remove libev fdevent option (ignore)Glenn Strauss2022-12-031-1/+0
| | | | lighttpd directly uses native OS event handlers
* [doc/scripts/cert-staple.sh] add copyright headerGlenn Strauss2022-11-231-0/+5
|
* [doc/scripts/cert-staple.sh] short-circuit checksGlenn Strauss2022-11-231-0/+12
| | | | | | | short-circuit checks if staple.der next update is > 25 hours in future (allows script to be run daily and to exit quickly if CA staples are issued for longer, e.g. a week at a time)
* [doc/scripts/cert-staple.sh] *BSD date portabilityGlenn Strauss2022-11-231-1/+8
| | | | | adjust date calculation for ocsp_expire for `date` command arguments using different flags on FreeBSD, OpenBSD, and DragonFlyBSD
* [cmake] install man pages with CMakeRolf Eike Beer2022-09-231-0/+4
| | | | github: closes #118
* [doc] more consistent use of vars in examplesGlenn Strauss2022-06-115-5/+5
| | | | incorporate some patches from macports package of lighttpd (thx)
* [multiple] application/javascript text/javascriptGlenn Strauss2022-05-262-1/+6
| | | | | | | | | | translate MIME type "application/javascript" to "text/javascript" (if required, type may still be overwritten by mod_setenv or mod_magnet) x-ref: "Updates to ECMAScript Media Types" https://www.rfc-editor.org/rfc/rfc9239
* [doc] regenerate doc/config/conf.d/mime.confGlenn Strauss2022-05-111-27/+57
| | | | (matches preferred syntax for Content-Type from upcoming HTTP spec rev)
* [multiple] use preferred syntax for Content-TypeGlenn Strauss2022-05-111-2/+2
| | | | | use preferred syntax for Content-Type: .../charset=... (match preferred syntax specified in upcoming HTTP spec revision)
* [doc] update external linksGlenn Strauss2022-02-191-3/+3
|
* [multiple] remove long-deprecated modulesGlenn Strauss2022-01-0311-724/+0
| | | | | x-ref: https://wiki.lighttpd.net/Docs_ConfigurationOptions#Deprecated
* [doc] SELinux: setsebool -P httpd_setrlimit onGlenn Strauss2021-12-101-0/+3
| | | | | document setrlimit() under SELinux may need one-time setup setsebool -P httpd_setrlimit on
* [doc] improve sample configsGlenn Strauss2021-11-051-57/+32
|
* [doc] expand vhosts.templateGlenn Strauss2021-11-051-10/+10
|
* [doc] improve sample configsIstiak Ferdous2021-11-053-26/+19
| | | | (commit msg edited by gstrauss)
* [doc] uncomment mod_auth load in conf.d/auth.confGlenn Strauss2021-10-271-1/+1
| | | | uncomment mod_auth load in conf.d/auth.conf to match other conf.d/*
* [doc] update config filesIstiak Ferdous2021-10-022-8/+9
| | | | github: closes #108
* [doc] https://wiki.lighttpd.net/Docs_PerformanceGlenn Strauss2021-09-081-183/+214
|
* [doc] create-mime.conf.pl -v silent for mult vndGlenn Strauss2021-01-091-2/+5
| | | | | | Do not issue trace if multiple */vnd.* register the same extension (silently mark mime-type for extension as application/octet-stream)
* [doc] create-mime.conf.pl -v for warningsGlenn Strauss2021-01-081-1/+5
| | | | | | | Do not issue warnings about duplicated entries unless called with -v /etc/mime.types is not typically edited by the end user, so the warning trace is noise to most end users.
* [doc] create-mime.conf.pl improve case handlingGlenn Strauss2021-01-071-9/+7
| | | | | | | | | | | | make create-mime.conf.pl more resilient to questionable edits to /etc/mime.types non-vnd.* subtype takes precedence over vnd.* subtype (type/subtype, e.g. text/plain) x-ref: "lighttpd: does not start with media-types 1.1.0" https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=979232
* [doc] create-mime.conf.pl improve case handlingGlenn Strauss2021-01-051-0/+22
| | | | | | | | | make create-mime.conf.pl more resilient to questionable edits to /etc/mime.types x-ref: "lighttpd: does not start with media-types 1.1.0" https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=979232
* [build] add GNUMAKEFLAGS=--no-print-directoryGlenn Strauss2020-12-271-0/+1
| | | | | | | quiet some automake noise during build (can use 'make -s' to quiet more) In doc/ and tests/docroot/, add GNUMAKEFLAGS=--no-print-directory -s
* [core] warn if mod_authn_file needed in confGlenn Strauss2020-12-131-0/+5
| | | | warn if mod_authn_file is not listed in lighttpd.conf, but is needed
* [TLS] cert-staple.sh POSIX sh compat (fixes #3043)Glenn Strauss2020-12-091-11/+11
| | | | | | | | (thx flynn) (patch from flynn) x-ref: "cert-staple.sh not POSIX compatible" https://redmine.lighttpd.net/issues/3043
* [doc] refresh doc/config/conf.d/mime.confGlenn Strauss2020-10-301-4/+114
|
* [doc] /var/run -> /runGlenn Strauss2020-10-221-1/+1
|
* [doc] change mod_compress refs to mod_deflateGlenn Strauss2020-10-212-1/+6
|
* [doc] comment out config disabling Range for .pdfGlenn Strauss2020-10-191-3/+4
| | | | | | | | | | | | | | | | | | | comment out lighttpd.conf config disabling Range requests for .pdf bug in Adobe Acrobat Reader browser plugin dates to over 10 years ago https://redmine.lighttpd.net/issues/171 https://redmine.lighttpd.net/issues/541 https://jarrettbroder.blogspot.com/2010/11/adobe-acrobat-reader-plugin-stalls-when.html one possible workaround was to disable "fast web view" in the Adobe Acrobat Reader bug in Chrome fixed in 2015 https://bugs.chromium.org/p/chromium/issues/detail?id=442318 However, there still may be issues with PDF readers mishandling Range requests, e.g. with coalesced ranges, so the section remains in the sample lighttpd.conf, but is commented out. https://github.com/mozilla/pdf.js/issues/9022
* [doc] refresh doc/config/*/*Glenn Strauss2020-10-1111-369/+1122
|
* [mod_dirlisting] fix config parsing crashGlenn Strauss2020-10-111-2/+2
| | | | | | | | | (bug on master branch; never released) (thx avij) update doc that dir-listing.hide-dotfiles = "enable" by default since lighttpd 1.4.40 https://redmine.lighttpd.net/issues/1081
* [scripts] cert-staple.sh enhancementsGlenn Strauss2020-10-111-2/+10
| | | | | | | | support validation from list of multiple signers attempt to handle older (end-of-life) versions of OpenSSL (thx avij)
* Add avahi service file under doc/avahi/Jeff Zignego2020-08-031-0/+15
| | | | github: closes #104
* [doc] mod_compress -> mod_deflateGlenn Strauss2020-08-024-13/+13
|
* [TLS] cert-staple.sh - refresh OCSP responses (#2469)Glenn Strauss2020-07-082-0/+64
| | | | | convenience script that can be run periodically from scheduled job to refresh OCSP responses used for OCSP stapling
* [doc] update comments in doc/config/modules.confGlenn Strauss2020-07-081-10/+9
|
* [multiple] correct misspellings in commentsGlenn Strauss2020-07-0816-59/+59
| | | | | | x-ref: "Script for fixing spelling errors with codespell" https://redmine.lighttpd.net/boards/3/topics/8947
* [doc] lighttpd.conf: lighttpd choose event-handlerGlenn Strauss2020-07-081-7/+8
| | | | | | comment out server.event-handler in sample lighttpd.conf so that lighttpd chooses the recommended event-handler for each OS
* [doc] add link to wiki in doc/outdated/ssl.txtGlenn Strauss2020-07-081-7/+12
|
* [config] update /var/run -> /run for systemdElan Ruusamäe2020-01-301-1/+1
| | | | | | | | | | | | | | | | This gets rid of the warning: > May 19 10:56:32 buster systemd[1]: /lib/systemd/system/lighttpd.service:6: > PIDFile= references path below legacy directory /var/run/, > updating /var/run/lighttpd.pid → /run/lighttpd.pid; > please update the unit file accordingly. refs: - https://github.com/systemd/systemd/commit/a2d1fb882c4308bc10362d971f333c5031d60069 - https://github.com/systemd/systemd/pull/9019 - https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=929203 - Filesystem Hierarchy Standard 3.0 (FHS 3.0) github: closes #100
* [doc] systemd socket activation config exampleElan Ruusamäe2019-05-113-1/+23
| | | | | | | | | | (minor edits by gstrauss) github: closes #96 x-ref: "doc/systemd: add example lighttpd.socket for systemd socket activation" https://github.com/lighttpd/lighttpd1.4/pull/96
* [doc] highlight relevance of module load order (fixes #2946)Glenn Strauss2019-05-041-4/+10
| | | | | | x-ref: "modules.conf order unhelpful (setenv vs. redirect)" https://redmine.lighttpd.net/issues/2946
* [doc] minor adjust create-mime.conf.pl regex match (#2942)Glenn Strauss2019-03-141-1/+1
| | | | | | | | | | | | '-' in char class should be at beginning or end, or escaped with \- so that it does not signify a char range in the char class (In the prior regex, the misuse permitted matching the comma char, which while mostly harmless, was not what was intended) x-ref: "incorrect behaviour of create-mime.assign.pl" https://redmine.lighttpd.net/issues/2942