| 1 | #menu "mini-httpd........................ A small web server"
|
|---|
| 2 |
|
|---|
| 3 | config FWRT_COMPILE_MINI_HTTPD
|
|---|
| 4 | tristate
|
|---|
| 5 | default n
|
|---|
| 6 | depends FWRT_PACKAGE_MINI_HTTPD || FWRT_PACKAGE_MINI_HTTPD_MATRIXSSL || FWRT_PACKAGE_MINI_HTTPD_OPENSSL
|
|---|
| 7 |
|
|---|
| 8 | config FWRT_PACKAGE_MINI_HTTPD
|
|---|
| 9 | prompt "mini-httpd........................ A small web server"
|
|---|
| 10 | tristate
|
|---|
| 11 | default n
|
|---|
| 12 | select FWRT_COMPILE_MINI_HTTPD
|
|---|
| 13 | select FWRT_PACKAGE_ZLIB
|
|---|
| 14 | help
|
|---|
| 15 | mini_httpd is a small HTTP server. Its performance is not great, but for
|
|---|
| 16 | low or medium traffic sites it's quite adequate. It implements all the
|
|---|
| 17 | basic features of an HTTP server, including:
|
|---|
| 18 |
|
|---|
| 19 | * GET, HEAD, and POST methods.
|
|---|
| 20 | * CGI.
|
|---|
| 21 | * Basic authentication.
|
|---|
| 22 | * Security against ".." filename snooping.
|
|---|
| 23 | * The common MIME types.
|
|---|
| 24 | * Trailing-slash redirection.
|
|---|
| 25 | * index.html, index.htm, index.cgi
|
|---|
| 26 | * Directory listings.
|
|---|
| 27 | * Multihoming / virtual hosting.
|
|---|
| 28 | * Standard logging.
|
|---|
| 29 | * Custom error pages.
|
|---|
| 30 |
|
|---|
| 31 | It can also be configured to do IPv6.
|
|---|
| 32 |
|
|---|
| 33 | http://www.acme.com/software/mini_httpd/
|
|---|
| 34 |
|
|---|
| 35 | config FWRT_PACKAGE_MINI_HTTPD_HTPASSWD
|
|---|
| 36 | prompt "mini-httpd-htpasswd............... Utility to generate HTTP access files"
|
|---|
| 37 | tristate
|
|---|
| 38 | default n
|
|---|
| 39 | select FWRT_PACKAGE_MINI_HTTPD
|
|---|
| 40 | help
|
|---|
| 41 | This file generates .htaccess/.htpasswd files to use HTTP access authentication
|
|---|
| 42 |
|
|---|
| 43 | config FWRT_PACKAGE_MINI_HTTPD_MATRIXSSL
|
|---|
| 44 | prompt "mini-httpd-matrixssl.............. A small web server, built with SSL support using MatrixSSL"
|
|---|
| 45 | tristate
|
|---|
| 46 | default n
|
|---|
| 47 | select FWRT_COMPILE_MINI_HTTPD
|
|---|
| 48 | select FWRT_PACKAGE_LIBMATRIXSSL
|
|---|
| 49 | select FWRT_PACKAGE_ZLIB
|
|---|
| 50 | help
|
|---|
| 51 | mini_httpd is a small HTTP server. Its performance is not great, but for
|
|---|
| 52 | low or medium traffic sites it's quite adequate. It implements all the
|
|---|
| 53 | basic features of an HTTP server, including:
|
|---|
| 54 |
|
|---|
| 55 | * GET, HEAD, and POST methods.
|
|---|
| 56 | * CGI.
|
|---|
| 57 | * Basic authentication.
|
|---|
| 58 | * Security against ".." filename snooping.
|
|---|
| 59 | * The common MIME types.
|
|---|
| 60 | * Trailing-slash redirection.
|
|---|
| 61 | * index.html, index.htm, index.cgi
|
|---|
| 62 | * Directory listings.
|
|---|
| 63 | * Multihoming / virtual hosting.
|
|---|
| 64 | * Standard logging.
|
|---|
| 65 | * Custom error pages.
|
|---|
| 66 |
|
|---|
| 67 | It can also be configured to do SSL/HTTPS and IPv6.
|
|---|
| 68 |
|
|---|
| 69 | http://www.acme.com/software/mini_httpd/
|
|---|
| 70 |
|
|---|
| 71 | config FWRT_PACKAGE_MINI_HTTPD_OPENSSL
|
|---|
| 72 | prompt "mini-httpd-openssl................ A small web server, built with SSL support using OpenSSL"
|
|---|
| 73 | tristate
|
|---|
| 74 | default n
|
|---|
| 75 | select FWRT_COMPILE_MINI_HTTPD
|
|---|
| 76 | select FWRT_PACKAGE_LIBOPENSSL
|
|---|
| 77 | select FWRT_PACKAGE_ZLIB
|
|---|
| 78 | help
|
|---|
| 79 | mini_httpd is a small HTTP server. Its performance is not great, but for
|
|---|
| 80 | low or medium traffic sites it's quite adequate. It implements all the
|
|---|
| 81 | basic features of an HTTP server, including:
|
|---|
| 82 |
|
|---|
| 83 | * GET, HEAD, and POST methods.
|
|---|
| 84 | * CGI.
|
|---|
| 85 | * Basic authentication.
|
|---|
| 86 | * Security against ".." filename snooping.
|
|---|
| 87 | * The common MIME types.
|
|---|
| 88 | * Trailing-slash redirection.
|
|---|
| 89 | * index.html, index.htm, index.cgi
|
|---|
| 90 | * Directory listings.
|
|---|
| 91 | * Multihoming / virtual hosting.
|
|---|
| 92 | * Standard logging.
|
|---|
| 93 | * Custom error pages.
|
|---|
| 94 |
|
|---|
| 95 | It can also be configured to do SSL/HTTPS and IPv6.
|
|---|
| 96 |
|
|---|
| 97 | http://www.acme.com/software/mini_httpd/
|
|---|
| 98 |
|
|---|
| 99 | #endmenu
|
|---|