2
1

Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. config BR2_PACKAGE_LIGHTTPD
  2. bool "lighttpd"
  3. help
  4. lighttpd a secure, fast, compliant and very flexible web-server
  5. which has been optimized for high-performance environments. It
  6. has a very low memory footprint compared to other webservers and
  7. takes care of cpu-load. Its advanced feature-set (FastCGI, CGI,
  8. Auth, Output-Compression, URL-Rewriting and many more) make
  9. lighttpd the perfect webserver-software for every server that
  10. is suffering load problems.
  11. http://www.lighttpd.net/
  12. if BR2_PACKAGE_LIGHTTPD
  13. menu "lighttpd packages"
  14. config BR2_PACKAGE_LIGHTTPD_OPENSSL
  15. bool "lighttpd openssl support"
  16. depends on BR2_PACKAGE_LIGHTTPD
  17. select BR2_PACKAGE_OPENSSL
  18. help
  19. Enable OpenSSL support for lighttpd.
  20. config BR2_PACKAGE_LIGHTTPD_ZLIB
  21. bool "lighttpd zlib support"
  22. depends on BR2_PACKAGE_LIGHTTPD
  23. select BR2_PACKAGE_ZLIB
  24. help
  25. Enable zlib support for lighttpd mod_compress.
  26. config BR2_PACKAGE_LIGHTTPD_BZIP2
  27. bool "lighttpd bzip2 support"
  28. depends on BR2_PACKAGE_LIGHTTPD
  29. select BR2_PACKAGE_BZIP2
  30. help
  31. Enable bzip2 support for lighttpd mod_compress.
  32. config BR2_PACKAGE_LIGHTTPD_PCRE
  33. bool "pcre"
  34. depends on BR2_PACKAGE_LIGHTTPD
  35. select BR2_PACKAGE_PCRE
  36. help
  37. Enable PCRE support. Needed to support mod_rewrite
  38. endmenu
  39. endif