40 lines
765 B
Plaintext
40 lines
765 B
Plaintext
|
#
|
||
|
# Copyright (C) 2010 OpenWrt.org
|
||
|
#
|
||
|
# This is free software, licensed under the GNU General Public License v2.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
|
|
||
|
menu "Configuration"
|
||
|
depends on PACKAGE_nginx
|
||
|
|
||
|
config NGINX_STUB_STATUS
|
||
|
bool
|
||
|
prompt "Enable stub status module"
|
||
|
default n
|
||
|
help
|
||
|
Enable the stub status module which gives some status from the server.
|
||
|
|
||
|
config NGINX_FLV
|
||
|
bool
|
||
|
prompt "Enable FLV module"
|
||
|
default n
|
||
|
help
|
||
|
Provides the ability to seek within FLV (Flash) files using time-based offsets.
|
||
|
|
||
|
config NGINX_SSL
|
||
|
bool
|
||
|
prompt "Enable SSL module"
|
||
|
default n
|
||
|
help
|
||
|
Enable HTTPS/SSL support.
|
||
|
|
||
|
config NGINX_DAV
|
||
|
bool
|
||
|
prompt "Enable WebDAV module"
|
||
|
default n
|
||
|
help
|
||
|
Enable the HTTP and WebDAV methods PUT, DELETE, MKCOL, COPY and MOVE.
|
||
|
|
||
|
endmenu
|