source: freewrt/package/mini_httpd/Config.in@ 264600b

freewrt_1_0 freewrt_2_0
Last change on this file since 264600b was 418e6805, checked in by Markus Wigge <markus@…>, 19 years ago

removed CONFIG_DEVEL and other cleanups

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@1119 afb5a338-a214-0410-bd46-81f09a774fd1

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