Part of a patch from Glenn Engel, updates httpd help

This commit is contained in:
Glenn L McGrath
2003-05-14 12:20:21 +00:00
parent 874e3381db
commit d3af409eae

View File

@ -46,77 +46,89 @@ config CONFIG_FEATURE_HTTPD_USAGE_FROM_INETD_ONLY
default n default n
depends on CONFIG_HTTPD depends on CONFIG_HTTPD
help help
This option disabling uid and port options for httpd applet This option disables uid and port options for the httpd applet
and more others reducing size moments, but require but requires inetd server daemon.
internet superserver daemon for usaging.
config CONFIG_FEATURE_HTTPD_BASIC_AUTH config CONFIG_FEATURE_HTTPD_BASIC_AUTH
bool " Enable Basic Authentication" bool " Enable Basic Authentication"
default n default y
depends on CONFIG_HTTPD depends on CONFIG_HTTPD
help help
Utilizes /etc/httpd.conf for basic authentication on a Utilizes password settings from /etc/httpd.conf for basic
per url basis. authentication on a per url basis.
config CONFIG_FEATURE_HTTPD_CGI
bool " Enable support Common Gateway Interface"
default n
depends on CONFIG_HTTPD
help
Disable this for do very small module
config CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP config CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP
bool " Enable support reload global config file after hup signaled" bool " Enable support reload global config file after hup signaled"
default n default n
depends on CONFIG_HTTPD depends on CONFIG_HTTPD
help help
Disable this for do very small module This option enables processing of SIGHUP to reload cached
configuration settings.
config CONFIG_FEATURE_HTTPD_SETUID config CONFIG_FEATURE_HTTPD_SETUID
bool " Enable support -u user option" bool " Enable support -u <user> option"
default n default n
depends on CONFIG_HTTPD depends on CONFIG_HTTPD
help help
Require for drop privilegies after bind() to privilegies port This option allows the server to run as a specific user
rather than defaulting to the user that starts the server.
Use of this option requires special privilegies to change to a
different user.
config CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES config CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES
bool " Enable support load from config file mime types" bool " Enable support load from config file mime types"
default n default n
depends on CONFIG_HTTPD depends on CONFIG_HTTPD
help help
After set this you can adding or change mime types from file This option enables support for additional mime types at
suffixes in config files run-time to be specified in the configuration file.
config CONFIG_FEATURE_HTTPD_CGI
bool " Enable support Common Gateway Interface"
default y
depends on CONFIG_HTTPD
help
This option allows scripts and executables to be invoked
when specific urls are requested.
config CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV config CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
bool " Enable support set eviroment REMOTE_PORT" bool " Enable support set eviroment REMOTE_PORT variable for CGI"
default n default n
depends on CONFIG_FEATURE_HTTPD_CGI depends on CONFIG_FEATURE_HTTPD_CGI
help help
After set this your CGI script can know own remote port connecting Use of this option can assist scripts in generating
references that contain a unique port number.
config CONFIG_FEATURE_HTTPD_SET_CGI_VARS_TO_ENV config CONFIG_FEATURE_HTTPD_SET_CGI_VARS_TO_ENV
bool " Enable support nonstandart httpd feature set CGI_var=value" bool " Enable setting of CGI_varname=value environment vars for CGI"
default n default y
depends on CONFIG_FEATURE_HTTPD_CGI depends on CONFIG_FEATURE_HTTPD_CGI
help help
After set this your CGI script can have trivial parse getted vars This option parses POST or GET arguments from a form and
sets environment variables with their value. This simplifies
and speeds up CGI scripts. A form argument of foo=bar would
result in a script having the environment variable CGI_foo set
to 'bar'. In addition, this option sets a variable that
lists all the argument names. e.g. CGI_VARNAMES_="name1 name2".
config CONFIG_FEATURE_HTTPD_DECODE_URL_STR config CONFIG_FEATURE_HTTPD_DECODE_URL_STR
bool " Support nonstandart httpd feature decode URL to stdout" bool " Enable the -d option for shell script CGI simplification"
default n default y
depends on CONFIG_HTTPD depends on CONFIG_HTTPD
help help
After set this your can decode URL from -d argument to stdout, After set, this option enables support for decoding of
example -d "Hello%20World" as "Hello World" url-encoded form arguments via the -d option. Output goes to
stdout. For example, httpd -d "Hello%20World" produces "Hello World".
config CONFIG_FEATURE_HTTPD_ENCODE_URL_STR config CONFIG_FEATURE_HTTPD_ENCODE_URL_STR
bool " Support nonstandart httpd feature encode argument to URL" bool " Enable the -e option for shell script CGI simplification."
default n default y
depends on CONFIG_HTTPD depends on CONFIG_HTTPD
help help
After set this your can encode from -d argument to stdout as URL, After set, this option allows html encoding arbitrary
example -e "<Hello World>" as "%3CHello%20World%3E" strings for display of the browser. Output goes to stdout.
For example, httpd -e "<Hello World>" as
"&#60Hello&#32World&#62".
config CONFIG_IFCONFIG config CONFIG_IFCONFIG
bool "ifconfig" bool "ifconfig"