File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change
1
+ nginx_upload_progress release 0.9.0 06 Apr 2012
2
+
3
+ * INCOMPATIBLE CHANGE: JSONP is now the default output for nginx upload
4
+ progress module. To restore the old behavior, add:
5
+ upload_progress_java_output
6
+ to your nginx configuration (thanks to drewbuschhorn for this work).
7
+
8
+ * Add instructions in the README on how to use this module with JQuery
9
+ AJAX.
10
+
1
11
nginx_upload_progress release 0.8.4 24 Feb 2012
2
12
3
13
* Fix compatibility with nginx 1.1.15
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ It works because Nginx acts as an accelerator of an upstream server, storing upl
15
15
on disk, before transmitting it to the upstream server. Each individual POST upload request
16
16
should contain a progress unique identifier.
17
17
18
- This module is Copyright (c) 2007-2011 Brice Figureau, and is licensed under the BSD license (see LICENSE).
18
+ This module is Copyright (c) 2007-2012 Brice Figureau, and is licensed under the BSD license (see LICENSE).
19
19
* rbtree and shm_zone code is based on Igor Sysoev limit_zone Nginx module.
20
20
* expire header code is based on Igor Sysoev header_filter Nginx module.
21
21
@@ -26,6 +26,16 @@ http://blog.lighttpd.net/articles/2006/08/01/mod_uploadprogress-is-back
26
26
WARNING:
27
27
* when compiled with --with-debug, this module will produce high number of log messages.
28
28
29
+ INCOMPATIBLE CHANGES
30
+ ====================
31
+
32
+ v0.9.0:
33
+
34
+ JSONP is now the default output of the progress probes. If you rely on this module serving
35
+ the deprecated java output use:
36
+ upload_progress_java_output
37
+ in the progress probe location.
38
+
29
39
30
40
Installation
31
41
============
@@ -150,7 +160,7 @@ upload_progress_json_output
150
160
This directive sets everything to output as pure json.
151
161
152
162
upload_progress_jsonp_output
153
- +++++++++++++++++++++++++++
163
+ ++++++++++++++++++++++++++++
154
164
:Syntax: upload_progress_jsonp_output
155
165
:Default: N/A
156
166
:Context: location
You can’t perform that action at this time.
0 commit comments