aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/Config.in74
1 files changed, 43 insertions, 31 deletions
diff --git a/networking/Config.in b/networking/Config.in
index cd38a7074..3a0d3e9d9 100644
--- a/networking/Config.in
+++ b/networking/Config.in
@@ -46,77 +46,89 @@ config CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY
46 default n 46 default n
47 depends on CONFIG_HTTPD 47 depends on CONFIG_HTTPD
48 help 48 help
49 This option disabling uid and port options for httpd applet 49 This option disables uid and port options for the httpd applet
50 and more others reducing size moments, but require 50 but requires inetd server daemon.
51 internet superserver daemon for usaging.
52 51
53config CONFIG_FEATURE_HTTPD_BASIC_AUTH 52config CONFIG_FEATURE_HTTPD_BASIC_AUTH
54 bool " Enable Basic Authentication" 53 bool " Enable Basic Authentication"
55 default n 54 default y
56 depends on CONFIG_HTTPD 55 depends on CONFIG_HTTPD
57 help 56 help
58 Utilizes /etc/httpd.conf for basic authentication on a 57 Utilizes password settings from /etc/httpd.conf for basic
59 per url basis. 58 authentication on a per url basis.
60 59
61config CONFIG_FEATURE_HTTPD_CGI
62 bool " Enable support Common Gateway Interface"
63 default n
64 depends on CONFIG_HTTPD
65 help
66 Disable this for do very small module
67 60
68config CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP 61config CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
69 bool " Enable support reload global config file after hup signaled" 62 bool " Enable support reload global config file after hup signaled"
70 default n 63 default n
71 depends on CONFIG_HTTPD 64 depends on CONFIG_HTTPD
72 help 65 help
73 Disable this for do very small module 66 This option enables processing of SIGHUP to reload cached
67 configuration settings.
74 68
75config CONFIG_FEATURE_HTTPD_SETUID 69config CONFIG_FEATURE_HTTPD_SETUID
76 bool " Enable support -u user option" 70 bool " Enable support -u <user> option"
77 default n 71 default n
78 depends on CONFIG_HTTPD 72 depends on CONFIG_HTTPD
79 help 73 help
80 Require for drop privilegies after bind() to privilegies port 74 This option allows the server to run as a specific user
75 rather than defaulting to the user that starts the server.
76 Use of this option requires special privilegies to change to a
77 different user.
81 78
82config CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES 79config CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
83 bool " Enable support load from config file mime types" 80 bool " Enable support load from config file mime types"
84 default n 81 default n
85 depends on CONFIG_HTTPD 82 depends on CONFIG_HTTPD
86 help 83 help
87 After set this you can adding or change mime types from file 84 This option enables support for additional mime types at
88 suffixes in config files 85 run-time to be specified in the configuration file.
89 86
87config CONFIG_FEATURE_HTTPD_CGI
88 bool " Enable support Common Gateway Interface"
89 default y
90 depends on CONFIG_HTTPD
91 help
92 This option allows scripts and executables to be invoked
93 when specific urls are requested.
90config CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV 94config CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
91 bool " Enable support set eviroment REMOTE_PORT" 95 bool " Enable support set eviroment REMOTE_PORT variable for CGI"
92 default n 96 default n
93 depends on CONFIG_FEATURE_HTTPD_CGI 97 depends on CONFIG_FEATURE_HTTPD_CGI
94 help 98 help
95 After set this your CGI script can know own remote port connecting 99 Use of this option can assist scripts in generating
100 references that contain a unique port number.
96 101
97config CONFIG_FEATURE_HTTPD_SET_CGI_VARS_TO_ENV 102config CONFIG_FEATURE_HTTPD_SET_CGI_VARS_TO_ENV
98 bool " Enable support nonstandart httpd feature set CGI_var=value" 103 bool " Enable setting of CGI_varname=value environment vars for CGI"
99 default n 104 default y
100 depends on CONFIG_FEATURE_HTTPD_CGI 105 depends on CONFIG_FEATURE_HTTPD_CGI
101 help 106 help
102 After set this your CGI script can have trivial parse getted vars 107 This option parses POST or GET arguments from a form and
108 sets environment variables with their value. This simplifies
109 and speeds up CGI scripts. A form argument of foo=bar would
110 result in a script having the environment variable CGI_foo set
111 to 'bar'. In addition, this option sets a variable that
112 lists all the argument names. e.g. CGI_VARNAMES_="name1 name2".
103 113
104config CONFIG_FEATURE_HTTPD_DECODE_URL_STR 114config CONFIG_FEATURE_HTTPD_DECODE_URL_STR
105 bool " Support nonstandart httpd feature decode URL to stdout" 115 bool " Enable the -d option for shell script CGI simplification"
106 default n 116 default y
107 depends on CONFIG_HTTPD 117 depends on CONFIG_HTTPD
108 help 118 help
109 After set this your can decode URL from -d argument to stdout, 119 After set, this option enables support for decoding of
110 example -d "Hello%20World" as "Hello World" 120 url-encoded form arguments via the -d option. Output goes to
121 stdout. For example, httpd -d "Hello%20World" produces "Hello World".
111 122
112config CONFIG_FEATURE_HTTPD_ENCODE_URL_STR 123config CONFIG_FEATURE_HTTPD_ENCODE_URL_STR
113 bool " Support nonstandart httpd feature encode argument to URL" 124 bool " Enable the -e option for shell script CGI simplification."
114 default n 125 default y
115 depends on CONFIG_HTTPD 126 depends on CONFIG_HTTPD
116 help 127 help
117 After set this your can encode from -d argument to stdout as URL, 128 After set, this option allows html encoding arbitrary
118 example -e "<Hello World>" as "%3CHello%20World%3E" 129 strings for display of the browser. Output goes to stdout.
119 130 For example, httpd -e "<Hello World>" as
131 "&#60Hello&#32World&#62".
120 132
121config CONFIG_IFCONFIG 133config CONFIG_IFCONFIG
122 bool "ifconfig" 134 bool "ifconfig"