1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-24 08:45:10 +03:00
esp8266/httpd/Config.in
cameronrich cd9b3c8865 improved performance
git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@30 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
2006-08-10 21:02:56 +00:00

117 lines
2.8 KiB
Plaintext

#
# For a description of the syntax of this configuration file,
# see scripts/config/Kconfig-language.txt
#
menu "Awhttpd Configuration"
depends on CONFIG_AWHTTPD
config CONFIG_HTTP_STATIC_BUILD
bool "Static Build"
default n
help
Select y if you want awhttp to be a static build (i.e. don't use the
axtls shared library or dll).
config CONFIG_HTTP_HAS_SSL
bool "Use SSL"
default y
help
Build the HTTP server with SSL capability
config CONFIG_HTTP_HTTPS_PORT
int "HTTPS port"
default 443
depends on CONFIG_HTTP_HAS_SSL
help
The port number of the HTTPS server.
You must be a root user in order to use the default port.
config CONFIG_HTTP_SESSION_CACHE_SIZE
int "SSL session cache size"
default 5
depends on CONFIG_HTTP_HAS_SSL
help
The size of the SSL session cache.
This is not actually related to the number of concurrent users, but
for optimum performance they should be the same (with a penalty
in memory usage).
config CONFIG_HTTP_WEBROOT
string "Web root location"
default "../www" if !CONFIG_PLATFORM_WIN32
default "..\\www" if CONFIG_PLATFORM_WIN32
help
The location of the web root in relation to awhttpd. This is
the directory where index.html lives.
config CONFIG_HTTP_PORT
int "HTTP port"
default 80
help
The port number of the normal HTTP server.
You must be a root user in order to use the default port.
config CONFIG_HTTP_TIMEOUT
int "Timeout"
default 5
help
Set the timeout of a connection in seconds.
config CONFIG_HTTP_HAS_CGI
bool "Enable CGI"
default n
help
Enable the CGI capability.
config CONFIG_HTTP_CGI_EXTENSION
string "CGI File Extension"
default ".php"
depends on CONFIG_HTTP_HAS_CGI
help
Tell awhhtp what file extension is used for CGI
config CONFIG_HTTP_DIRECTORIES
bool "Enable Directory Listing"
default n
help
Enable directory listing.
config CONFIG_HTTP_PERM_CHECK
bool "Permissions Check"
default n
help
Enable permissions checking on the directories before reading the
files in them.
config CONFIG_HTTP_HAS_IPV6
bool "Enable IPv6"
default n
depends on !CONFIG_PLATFORM_WIN32
help
Use IPv6 instead of IPv4.
Does not work under Win32
config CONFIG_HTTP_VERBOSE
bool "Verbose Mode"
default y if CONFIG_SSL_FULL_MODE
default n if !CONFIG_SSL_FULL_MODE
help
Enable extra statements used when using awhttpd.
config CONFIG_HTTP_IS_DAEMON
bool "Run as a daemon"
default n
depends on !CONFIG_PLATFORM_WIN32
help
Run awhttpd as a background process.
Does not work under Win32
endmenu