Skip to content

Commit c558c43

Browse files
committedApr 26, 2013
bumped version to 0.8.1.
1 parent 04c81b1 commit c558c43

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎doc/HttpLuaModule.wiki

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This module is under active development and is production ready.
1010

1111
= Version =
1212

13-
This document describes ngx_lua [https://github.com/chaoslawful/lua-nginx-module/tags v0.8.0] released on 23 April 2013.
13+
This document describes ngx_lua [https://github.com/chaoslawful/lua-nginx-module/tags v0.8.1] released on 26 April 2013.
1414

1515
= Synopsis =
1616
<geshi lang="nginx">
@@ -306,7 +306,7 @@ When Nginx receives the <code>HUP</code> signal and starts reloading the config
306306
Usually you can register (true) Lua global variables or pre-load Lua modules at server start-up by means of this hook. Here is an example for pre-loading Lua modules:
307307

308308
<geshi lang="nginx">
309-
init_by_lua 'require "cjson"';
309+
init_by_lua 'cjson = require "cjson"';
310310

311311
server {
312312
location = /api {
@@ -5026,7 +5026,7 @@ On a ThinkPad T400 2.80 GHz laptop, the Hello World example readily achieves 28k
50265026
The latest module is compatible with the following versions of Nginx:
50275027
50285028
* 1.3.x (last tested: 1.3.11)
5029-
* 1.2.x (last tested: 1.2.7)
5029+
* 1.2.x (last tested: 1.2.8)
50305030
* 1.1.x (last tested: 1.1.5)
50315031
* 1.0.x (last tested: 1.0.15)
50325032
* 0.9.x (last tested: 0.9.4)
@@ -5050,9 +5050,9 @@ Alternatively, ngx_lua can be manually compiled into Nginx:
50505050
Build the source with this module:
50515051
50525052
<geshi lang="bash">
5053-
wget 'http://nginx.org/download/nginx-1.2.7.tar.gz'
5054-
tar -xzvf nginx-1.2.7.tar.gz
5055-
cd nginx-1.2.7/
5053+
wget 'http://nginx.org/download/nginx-1.2.8.tar.gz'
5054+
tar -xzvf nginx-1.2.8.tar.gz
5055+
cd nginx-1.2.8/
50565056
50575057
# tell nginx's build system where to find LuaJIT:
50585058
export LUAJIT_LIB=/path/to/luajit/lib

4 commit comments

Comments
 (4)

rkearsley commented on Apr 27, 2013

@rkearsley

any known issues with 1.4, or did you not test it so far?

agentzh commented on Apr 27, 2013

@agentzh
MemberAuthor

I haven't tested nginx 1.4.0 yet. There're quite a few known issues when SPDY is enabled in recent nginx 1.3.x, which should be inherited by 1.4.0.

jbergstroem commented on Apr 27, 2013

@jbergstroem

@agentzh Any references to the 'known issues' re spdy and lua?

agentzh commented on Apr 27, 2013

@agentzh
MemberAuthor

@jbergstroem Just search through the GitHub Issues board: https://github.com/chaoslawful/lua-nginx-module/issues

Please sign in to comment.