mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-01 10:59:55 +00:00
merge r559454 from www/nginx-devel:
Fix PROPFIND fail with 500 on simlinks to non exist file/dir when nginx compiled with the third-party http_dav_ext module. PR: 220871 Sponsored by: Netzkommune GmbH
This commit is contained in:
parent
c78beee722
commit
ce73707163
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=559626
@ -3,7 +3,7 @@
|
||||
|
||||
PORTNAME= nginx
|
||||
PORTVERSION= 1.18.0
|
||||
PORTREVISION?= 43
|
||||
PORTREVISION?= 44
|
||||
PORTEPOCH= 2
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= https://nginx.org/download/ \
|
||||
|
@ -93,6 +93,7 @@ HTTP_DAV_EXT_IMPLIES= HTTP_DAV
|
||||
HTTP_DAV_EXT_LIB_DEPENDS= libexpat.so:textproc/expat2
|
||||
HTTP_DAV_EXT_GH_TUPLE= arut:nginx-dav-ext-module:v3.0.0:dav_ext
|
||||
HTTP_DAV_EXT_VARS= DSO_EXTMODS+=dav_ext
|
||||
HTTP_DAV_EXT_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-ngx_http_dav_ext_module.c
|
||||
|
||||
HTTP_EVAL_GH_TUPLE= openresty:nginx-eval-module:582bd25:eval
|
||||
HTTP_EVAL_VARS= DSO_EXTMODS+=eval
|
||||
|
15
www/nginx/files/extra-patch-ngx_http_dav_ext_module.c
Normal file
15
www/nginx/files/extra-patch-ngx_http_dav_ext_module.c
Normal file
@ -0,0 +1,15 @@
|
||||
--- ../nginx-dav-ext-module-3.0.0/ngx_http_dav_ext_module.c 2018-12-17 11:45:12.000000000 +0300
|
||||
+++ ../nginx-dav-ext-module-3.0.0/ngx_http_dav_ext_module.c 2020-03-13 01:20:47.498199000 +0300
|
||||
@@ -896,10 +896,9 @@
|
||||
ngx_cpystrn(last, name.data, name.len + 1);
|
||||
|
||||
if (ngx_de_info(filename, &dir) == NGX_FILE_ERROR) {
|
||||
- ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno,
|
||||
+ ngx_log_error(NGX_LOG_ERR, r->connection->log, ngx_errno,
|
||||
ngx_de_info_n " \"%s\" failed", filename);
|
||||
- rc = NGX_HTTP_INTERNAL_SERVER_ERROR;
|
||||
- break;
|
||||
+ continue;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user