Files
buildroot/package/lighttpd/Config.in
Thomas Devoogdt 13de70b4b4 package/lighttpd: security bump to 1.4.81
News:
- https://www.lighttpd.net/2025/8/13/1.4.80/
  - detect and issue error trace for HTTP/2 MadeYouReset VU#767506 CVE-2025-8671
- https://www.lighttpd.net/2025/8/17/1.4.81/
  - security: fix to reject disallowed trailers

See Changes from 1.4.79:

[build] remove references to libev; no longer used

So drop here as well.

Signed-off-by: Thomas Devoogdt <thomas@devoogdt.com>
Signed-off-by: Arnout Vandecappelle <arnout@rnout.be>
(cherry picked from commit 0d643a8636)
Signed-off-by: Titouan Christophe <titouan.christophe@mind.be>
2025-09-04 13:57:24 +02:00

172 lines
4.5 KiB
Plaintext

comment "lighttpd needs a toolchain w/ dynamic library"
depends on BR2_USE_MMU
depends on BR2_STATIC_LIBS
config BR2_PACKAGE_LIGHTTPD
bool "lighttpd"
depends on BR2_USE_MMU # fork()
depends on !BR2_STATIC_LIBS
select BR2_PACKAGE_LIBXCRYPT if BR2_TOOLCHAIN_USES_GLIBC
select BR2_PACKAGE_XXHASH
help
lighttpd a secure, fast, compliant and very flexible
web-server which has been optimized for high-performance
environments. It has a very low memory footprint compared to
other webservers and takes care of cpu-load. Its advanced
feature-set (FastCGI, CGI, Auth, Output-Compression,
URL-Rewriting and many more) make lighttpd the perfect
webserver-software for every server that is suffering load
problems.
https://www.lighttpd.net/
if BR2_PACKAGE_LIGHTTPD
config BR2_PACKAGE_LIGHTTPD_BROTLI
bool "brotli support"
select BR2_PACKAGE_BROTLI
help
Enable brotli support for lighttpd mod_deflate.
config BR2_PACKAGE_LIGHTTPD_BZIP2
bool "bzip2 support"
select BR2_PACKAGE_BZIP2
help
Enable bzip2 support for lighttpd mod_deflate.
config BR2_PACKAGE_LIGHTTPD_DBI
bool "dbi support"
select BR2_PACKAGE_LIBDBI
help
Enable dbi support for lighttpd mod_auth mod_vhostdb_dbi.
config BR2_PACKAGE_LIGHTTPD_GNUTLS
bool "gnutls support"
depends on !BR2_STATIC_LIBS
depends on BR2_USE_WCHAR
select BR2_PACKAGE_GNUTLS
help
Enable gnutls support for lighttpd mod_auth.
comment "gnutls support needs a toolchain w/ wchar, dynamic library"
depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS
config BR2_PACKAGE_LIGHTTPD_KRB5
bool "krb5 support"
select BR2_PACKAGE_LIBKRB5
help
Enable Kerberos5 support for lighttpd mod_auth.
config BR2_PACKAGE_LIGHTTPD_LDAP
bool "ldap support"
depends on BR2_USE_WCHAR # openldap
select BR2_PACKAGE_OPENLDAP
help
Enable LDAP support for lighttpd mod_auth mod_vhostdb_ldap.
comment "ldap support needs a toolchain w/ wchar"
depends on !BR2_USE_WCHAR
config BR2_PACKAGE_LIGHTTPD_LUA
bool "lua support"
depends on BR2_PACKAGE_LUA
help
Enable Lua support. Needed to support mod_magnet
config BR2_PACKAGE_LIGHTTPD_MAXMINDDB
bool "maxminddb support"
select BR2_PACKAGE_LIBMAXMINDDB
help
Enable MaxMind GeoIP2 support. Needed to support mod_maxminddb
config BR2_PACKAGE_LIGHTTPD_MBEDTLS
bool "mbedtls support"
select BR2_PACKAGE_MBEDTLS
help
Enable mbedtls support for lighttpd mod_auth.
config BR2_PACKAGE_LIGHTTPD_MYSQL
bool "mysql support"
depends on BR2_PACKAGE_MARIADB
help
Enable mysql support for lighttpd mod_vhostdb_mysql.
comment "mysql support needs mariadb"
depends on !BR2_PACKAGE_MARIADB
config BR2_PACKAGE_LIGHTTPD_NETTLE
bool "nettle support"
select BR2_PACKAGE_NETTLE
help
Enable nettle support for lighttpd.
config BR2_PACKAGE_LIGHTTPD_OPENSSL
bool "openssl support"
select BR2_PACKAGE_OPENSSL
help
Enable OpenSSL support for lighttpd.
config BR2_PACKAGE_LIGHTTPD_PAM
bool "pam authentication support"
default y
depends on BR2_PACKAGE_LINUX_PAM
help
Enable PAM authentication support for lighttpd.
config BR2_PACKAGE_LIGHTTPD_PCRE
bool "pcre support"
select BR2_PACKAGE_PCRE2
help
Enable PCRE support. Needed to support mod_rewrite
config BR2_PACKAGE_LIGHTTPD_PGSQL
bool "pgsql support"
depends on BR2_USE_MMU # postgresql
depends on BR2_USE_WCHAR # postgresql
depends on BR2_ENABLE_LOCALE # postgresql
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # postgresql
depends on !BR2_STATIC_LIBS # postgresql
depends on !BR2_OPTIMIZE_FAST # postgresql
select BR2_PACKAGE_POSTGRESQL
help
Enable postgres support for lighttpd mod_vhostdb_pgsql.
comment "pgsql support needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR
comment "pgsql support can't be built with Optimize for fast"
depends on BR2_OPTIMIZE_FAST
config BR2_PACKAGE_LIGHTTPD_WEBDAV
bool "webdav support"
select BR2_PACKAGE_LIBXML2
select BR2_PACKAGE_SQLITE
help
Enable webdav support. Needed to support mod_webdav
config BR2_PACKAGE_LIGHTTPD_WOLFSSL
bool "wolfssl support"
depends on BR2_TOOLCHAIN_HAS_THREADS
select BR2_PACKAGE_WOLFSSL
select BR2_PACKAGE_WOLFSSL_ALL
help
Enable wolfssl support for lighttpd mod_auth.
comment "wolfssl support needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS
config BR2_PACKAGE_LIGHTTPD_ZLIB
bool "zlib support"
select BR2_PACKAGE_ZLIB
help
Enable zlib support for lighttpd mod_deflate.
config BR2_PACKAGE_LIGHTTPD_ZSTD
bool "zstd support"
select BR2_PACKAGE_ZSTD
help
Enable zstd support for lighttpd mod_deflate.
endif