Skip to content

Commit 3cec90a

Browse files
committed
Added support for submodules and unzip submodule
1 parent 728a954 commit 3cec90a

6 files changed

+1151
-146
lines changed

Changelog

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11

2+
Version 2.0.5
3+
* Fixed bug: prevent leaking of file descriptor on a timeout.
4+
25
Version 2.0.4
36
* Fixed bug: location configuration of upload_set_form_field and upload_pass_form_field
47
was not inheritable from server configuration.

README

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
Documentation for this module could be found under following URL:
3+
4+
* English:
5+
6+
http://www.grid.net.ru/nginx/upload.en.html
7+
8+
* Russian:
9+
10+
http://www.grid.net.ru/nginx/upload.ru.html

config

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
USE_MD5=YES
22
USE_SHA1=YES
33
ngx_addon_name=ngx_http_upload_module
4-
HTTP_MODULES="$HTTP_MODULES ngx_http_upload_module"
5-
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_upload_module.c"
4+
HTTP_MODULES="$HTTP_MODULES ngx_http_upload_module ngx_http_unzip_filter_module"
5+
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $ngx_addon_dir/ngx_http_upload_module.c $ngx_addon_dir/ngx_http_unzip_filter_module.c"
6+
HTTP_INCS="$HTTP_INCS $ngx_addon_dir"

0 commit comments

Comments
 (0)