let ipkg fail when a package file to be installed is not found
[openwrt/staging/wigyori.git] / openwrt / package / mini_httpd / Config.in
1 menu "mini-httpd........................ A small web server"
2
3 config BR2_COMPILE_MINI_HTTPD
4 tristate
5 default n
6 depends BR2_PACKAGE_MINI_HTTPD || BR2_PACKAGE_MINI_HTTPD_MATRIXSSL || BR2_PACKAGE_MINI_HTTPD_OPENSSL
7
8 config BR2_PACKAGE_MINI_HTTPD
9 prompt "mini-httpd........................ A small web server"
10 tristate
11 default m if CONFIG_DEVEL
12 select BR2_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
34 config BR2_PACKAGE_MINI_HTTPD_HTPASSWD
35 prompt "mini-httpd-htpasswd............... Utility to generate HTTP access files"
36 tristate
37 default m if CONFIG_DEVEL
38 select BR2_PACKAGE_MINI_HTTPD
39 help
40 This file generates .htaccess/.htpasswd files to use HTTP access authentication
41
42 config BR2_PACKAGE_MINI_HTTPD_MATRIXSSL
43 prompt "mini-httpd-matrixssl.............. A small web server, built with SSL support using MatrixSSL"
44 tristate
45 default m if CONFIG_DEVEL
46 select BR2_COMPILE_MINI_HTTPD
47 select BR2_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
69 config BR2_PACKAGE_MINI_HTTPD_OPENSSL
70 prompt "mini-httpd-openssl................ A small web server, built with SSL support using OpenSSL"
71 tristate
72 default m if CONFIG_DEVEL
73 select BR2_COMPILE_MINI_HTTPD
74 select BR2_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