[package] nginx: packaging enhancements
* add a separate config menu for optionnal modules (not every possible module are here; just taken the ones Debian enables). By default they are all disabled, so this removes the default dependency on libopenssl. * correctly listed conffiles * enable IPv6 only when CONFIG_IPV6 is set * change the default listening adress in nginx.conf when IPv6 is enabled so that it listens on [::] git-svn-id: svn://svn.openwrt.org/openwrt/packages@22807 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
40
net/nginx/Config.in
Normal file
40
net/nginx/Config.in
Normal file
@ -0,0 +1,40 @@
|
||||
#
|
||||
# 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
|
||||
select PACKAGE_libopenssl
|
||||
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
|
Reference in New Issue
Block a user