nginx-dav-ext: new package
Nginx built-in support for webdav is missing support for two commands: PROPFIND and OPTIONS. This commit adds a new package that provides an external nginx module with improved webdav support. Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com> [Thomas: - Remove the BR2_PACKAGE_NGINX_HTTP_DAV_EXT_MODULE sub-option of the nginx package. The BR2_PACKAGE_NGINX_DAV_EXT option is sufficient. - Move the nginx.mk code together with another external module being enabled, nginx-upload. - Add LICENSE and LICENSE_FILES variables.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
1120fdc379
commit
e58ae36520
@ -1545,6 +1545,7 @@ menu "Networking applications"
|
||||
source "package/nginx/Config.in"
|
||||
if BR2_PACKAGE_NGINX
|
||||
menu "External nginx modules"
|
||||
source "package/nginx-dav-ext/Config.in"
|
||||
source "package/nginx-naxsi/Config.in"
|
||||
source "package/nginx-upload/Config.in"
|
||||
endmenu
|
||||
|
7
package/nginx-dav-ext/Config.in
Normal file
7
package/nginx-dav-ext/Config.in
Normal file
@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_NGINX_DAV_EXT
|
||||
bool "nginx-dav-ext"
|
||||
select BR2_PACKAGE_EXPAT
|
||||
help
|
||||
NGINX WebDAV missing commands support (PROPFIND & OPTIONS).
|
||||
|
||||
https://github.com/arut/nginx-dav-ext-module
|
2
package/nginx-dav-ext/nginx-dav-ext.hash
Normal file
2
package/nginx-dav-ext/nginx-dav-ext.hash
Normal file
@ -0,0 +1,2 @@
|
||||
# Locally computed
|
||||
sha256 d428a0236c933779cb40ac8c91afb19d5c25a376dc3caab825bfd543e1ee530d nginx-dav-ext-v0.0.3.tar.gz
|
13
package/nginx-dav-ext/nginx-dav-ext.mk
Normal file
13
package/nginx-dav-ext/nginx-dav-ext.mk
Normal file
@ -0,0 +1,13 @@
|
||||
################################################################################
|
||||
#
|
||||
# nginx-dav-ext
|
||||
#
|
||||
################################################################################
|
||||
|
||||
NGINX_DAV_EXT_VERSION = v0.0.3
|
||||
NGINX_DAV_EXT_SITE = $(call github,arut,nginx-dav-ext-module,$(NGINX_DAV_EXT_VERSION))
|
||||
NGINX_DAV_EXT_LICENSE = BSD-2c
|
||||
NGINX_DAV_EXT_LICENSE_FILES = ngx_http_dav_ext_module.c
|
||||
NGINX_DAV_EXT_DEPENDENCIES = expat
|
||||
|
||||
$(eval $(generic-package))
|
@ -245,6 +245,11 @@ NGINX_CONF_OPTS += $(addprefix --add-module=,$(NGINX_UPLOAD_DIR))
|
||||
NGINX_DEPENDENCIES += nginx-upload
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NGINX_DAV_EXT),y)
|
||||
NGINX_CONF_OPTS += --add-module=$(NGINX_DAV_EXT_DIR)
|
||||
NGINX_DEPENDENCIES += nginx-dav-ext
|
||||
endif
|
||||
|
||||
# Debug logging
|
||||
NGINX_CONF_OPTS += $(if $(BR2_PACKAGE_NGINX_DEBUG),--with-debug)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user