summaryrefslogtreecommitdiff
path: root/apps/netutils/webserver/Kconfig
blob: ef7171a8efee7651b35031e12fceaa5cfd054aea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config NETUTILS_WEBSERVER
	bool "uIP web server"
	default n
	---help---
		Enable support for the uIP web server.  This tiny web server was
		from uIP 1.0, but has undergone many changes.  It is, however,
		still referred to as the "uIP" web server.

if NETUTILS_WEBSERVER

config NETUTILS_HTTPD_SCRIPT_DISABLE
	bool "Disable %! scripting"
	default n
	---help---
		This option, if selected, will elide the %! scripting

config NETUTILS_HTTPD_SERVERHEADER_DISABLE
	bool "Disabled the SERVER header"
	default n
	---help---
		This option, if selected, will elide the Server\: header

config NETUTILS_HTTPD_MMAP
	bool "File mmap-ing"
	default n
	---help---
		Replaces standard uIP server file open operations with mmap-ing operations.

endif