You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.markdown
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -221,7 +221,7 @@ This module is under active development and is production ready.
221
221
Version
222
222
=======
223
223
224
-
This document describes ngx_lua [v0.9.4](https://github.com/chaoslawful/lua-nginx-module/tags) released on 10 January 2014.
224
+
This document describes ngx_lua [v0.9.5](https://github.com/chaoslawful/lua-nginx-module/tags) released on 12 March 2014.
225
225
226
226
Synopsis
227
227
========
@@ -3603,7 +3603,7 @@ ngx.exit(501)
3603
3603
3604
3604
Note that while this method accepts all [HTTP status constants](#http-status-constants) as input, it only accepts `NGX_OK` and `NGX_ERROR` of the [core constants](#core-constants).
3605
3605
3606
-
It is recommended, though not necessary (for contexts other than [header_filter_by_lua](#header_filter_by_lua), to combine the `return` statement with this call, i.e., `return ngx.exit(...)`, to give a visual hint to others reading the code.
3606
+
It is recommended, though not necessary (for contexts other than [header_filter_by_lua](#header_filter_by_lua)), to combine the `return` statement with this call, i.e., `return ngx.exit(...)`, to give a visual hint to others reading the code.
3607
3607
3608
3608
When being used in the context of [header_filter_by_lua](#header_filter_by_lua), `ngx.exit()` is an asynchronous operation and will return immediately. This behavior might change in the future. So always use `return` at the same time, as suggested above.
3609
3609
@@ -6408,7 +6408,7 @@ Nginx Compatibility
6408
6408
===================
6409
6409
The latest module is compatible with the following versions of Nginx:
6410
6410
6411
-
* 1.5.x (last tested: 1.5.8)
6411
+
* 1.5.x (last tested: 1.5.11)
6412
6412
* 1.4.x (last tested: 1.4.4)
6413
6413
* 1.3.x (last tested: 1.3.11)
6414
6414
* 1.2.x (last tested: 1.2.9)
@@ -6442,9 +6442,9 @@ Build the source with this module:
Copy file name to clipboardExpand all lines: doc/HttpLuaModule.wiki
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ This module is under active development and is production ready.
10
10
11
11
= Version =
12
12
13
-
This document describes ngx_lua [https://github.com/chaoslawful/lua-nginx-module/tags v0.9.4] released on 10 January 2014.
13
+
This document describes ngx_lua [https://github.com/chaoslawful/lua-nginx-module/tags v0.9.5] released on 12 March 2014.
14
14
15
15
= Synopsis =
16
16
<geshi lang="nginx">
@@ -2992,7 +2992,7 @@ Number literals can be used directly as the argument, for instance,
2992
2992
2993
2993
Note that while this method accepts all [[#HTTP status constants|HTTP status constants]] as input, it only accepts <code>NGX_OK</code> and <code>NGX_ERROR</code> of the [[#core constants|core constants]].
2994
2994
2995
-
It is recommended, though not necessary (for contexts other than [[#header_filter_by_lua|header_filter_by_lua]], to combine the <code>return</code> statement with this call, i.e., <code>return ngx.exit(...)</code>, to give a visual hint to others reading the code.
2995
+
It is recommended, though not necessary (for contexts other than [[#header_filter_by_lua|header_filter_by_lua]]), to combine the <code>return</code> statement with this call, i.e., <code>return ngx.exit(...)</code>, to give a visual hint to others reading the code.
2996
2996
2997
2997
When being used in the context of [[#header_filter_by_lua|header_filter_by_lua]], <code>ngx.exit()</code> is an asynchronous operation and will return immediately. This behavior might change in the future. So always use <code>return</code> at the same time, as suggested above.
2998
2998
@@ -5432,7 +5432,7 @@ On a ThinkPad T400 2.80 GHz laptop, the Hello World example readily achieves 28k
5432
5432
= Nginx Compatibility =
5433
5433
The latest module is compatible with the following versions of Nginx:
5434
5434
5435
-
* 1.5.x (last tested: 1.5.8)
5435
+
* 1.5.x (last tested: 1.5.11)
5436
5436
* 1.4.x (last tested: 1.4.4)
5437
5437
* 1.3.x (last tested: 1.3.11)
5438
5438
* 1.2.x (last tested: 1.2.9)
@@ -5459,9 +5459,9 @@ Alternatively, ngx_lua can be manually compiled into Nginx:
0 commit comments