Config.in 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. config ADK_COMPILE_MINI_HTTPD
  2. tristate
  3. default n
  4. depends ADK_PACKAGE_MINI_HTTPD || ADK_PACKAGE_MINI_HTTPD_OPENSSL
  5. config ADK_PACKAGE_MINI_HTTPD
  6. prompt "mini-httpd........................ A small web server"
  7. tristate
  8. default n
  9. select ADK_COMPILE_MINI_HTTPD
  10. help
  11. mini_httpd is a small HTTP server. Its performance is not great, but for
  12. low or medium traffic sites it's quite adequate. It implements all the
  13. basic features of an HTTP server, including:
  14. * GET, HEAD, and POST methods.
  15. * CGI.
  16. * Basic authentication.
  17. * Security against ".." filename snooping.
  18. * The common MIME types.
  19. * Trailing-slash redirection.
  20. * index.html, index.htm, index.cgi
  21. * Directory listings.
  22. * Multihoming / virtual hosting.
  23. * Standard logging.
  24. * Custom error pages.
  25. It can also be configured to do IPv6.
  26. http://www.acme.com/software/mini_httpd/
  27. config ADK_PACKAGE_MINI_HTTPD_HTPASSWD
  28. prompt "mini-httpd-htpasswd............... Utility to generate HTTP access files"
  29. tristate
  30. default n
  31. select ADK_PACKAGE_MINI_HTTPD
  32. help
  33. This file generates .htaccess/.htpasswd files to use HTTP access authentication
  34. config ADK_PACKAGE_MINI_HTTPD_OPENSSL
  35. prompt "mini-httpd-openssl................ A small web server, built with SSL support using OpenSSL"
  36. tristate
  37. default n
  38. select ADK_COMPILE_MINI_HTTPD
  39. select ADK_PACKAGE_LIBOPENSSL
  40. help
  41. mini_httpd is a small HTTP server. Its performance is not great, but for
  42. low or medium traffic sites it's quite adequate. It implements all the
  43. basic features of an HTTP server, including:
  44. * GET, HEAD, and POST methods.
  45. * CGI.
  46. * Basic authentication.
  47. * Security against ".." filename snooping.
  48. * The common MIME types.
  49. * Trailing-slash redirection.
  50. * index.html, index.htm, index.cgi
  51. * Directory listings.
  52. * Multihoming / virtual hosting.
  53. * Standard logging.
  54. * Custom error pages.
  55. It can also be configured to do SSL/HTTPS and IPv6.
  56. http://www.acme.com/software/mini_httpd/