agentzh (章亦春)
|
bd6e572148
|
documented the ngx.req.get_post_args() method in README.
|
2011-08-12 14:51:31 +08:00 |
agentzh (章亦春)
|
0e03a44146
|
updated docs to reflect recent changes in print() and ngx.log().
|
2011-08-12 09:42:47 +08:00 |
agentzh (章亦春)
|
44182153f3
|
documented the ngx.req.get_query_args method. this new interface resolves github issue #15. thanks Bertrand Mansion (golgote).
|
2011-08-12 08:59:48 +08:00 |
agentzh (章亦春)
|
65f178f598
|
documented the ngx.parse_http_time() method. thanks James Hurst.
|
2011-07-21 17:46:32 +08:00 |
agentzh (章亦春)
|
4dffb3cea4
|
removed the limitation that we cannot capture subrequests with internal redirects from the doc.
|
2011-07-05 13:15:52 +08:00 |
agentzh (章亦春)
|
5cd3b677b6
|
documented setting nginx special variables $limit_rate/$args, and reading special variables $1, $2, $3, and etc.
|
2011-07-04 19:15:35 +08:00 |
agentzh (章亦春)
|
9ff893ff83
|
applied the patch from cyberty to add ngx.http_time() function to expose the nginx core function ngx_http_time to the Lua land.
|
2011-06-30 18:54:58 +08:00 |
agentzh (章亦春)
|
dcdcf87ca2
|
confirmed that we work with nginx 1.0.4.
|
2011-06-29 15:28:01 +08:00 |
agentzh (章亦春)
|
ef3605b130
|
updated the ngx_openresty bundle link to openresty.org.
|
2011-06-28 12:23:11 +08:00 |
agentzh (章亦春)
|
b9a84fc3a9
|
fixed a tiny bug in the subrequest + internal redirect fix: we should not override the current ctx completely, as mentioned in github issue #41.
|
2011-06-16 13:38:14 +08:00 |
agentzh (章亦春)
|
1a58a29314
|
fixed redundant last chunk issue for ngx.exec() invocation at rewrite and access phases: we should quit the current core_run_phases cycle; this also fixed github issue #40: 2 Subrequest calls when using access_by_lua, ngx.exec and echo_location.
|
2011-06-14 17:06:34 +08:00 |
agentzh (章亦春)
|
9c8b21969e
|
Merge branch 'exit-fixes'
|
2011-06-12 10:57:56 +08:00 |
agentzh (章亦春)
|
0f2c228ffd
|
updated the documentation for ngx.exit() in README.
|
2011-06-07 23:41:00 +08:00 |
agentzh (章亦春)
|
15229c2d6e
|
now exit(status) where status >= 200 and status < 300 will successfully quit the current request altogether if being used in rewrite_by_lua or rewrite_by_lua_file. thanks moodydeath for reporting this issue.
|
2011-06-07 23:17:21 +08:00 |
agentzh (章亦春)
|
43345dcbe4
|
documented that ngx.req.get_headers() and its friends only operate on the current request. it has no effect on the current request's subrequests. thanks moodydeath.
|
2011-05-23 16:38:34 +08:00 |
agentzh (章亦春)
|
2081f73a5e
|
fixed the link to ngx_openresty.
|
2011-05-20 15:08:50 +08:00 |
agentzh (章亦春)
|
d0026ac6d5
|
added pointer to the ngx_openresty bundle in the Installation section.
|
2011-05-20 15:07:19 +08:00 |
agentzh (章亦春)
|
ce83076c74
|
minor formatting.
|
2011-05-20 12:14:25 +08:00 |
agentzh (章亦春)
|
0dca6659bf
|
minor formatting.
|
2011-05-20 12:13:43 +08:00 |
agentzh (章亦春)
|
33f2decc4d
|
confirmed that we work with nginx 1.0.2 as well.
|
2011-05-11 16:19:25 +08:00 |
agentzh (章亦春)
|
75e67b6bb5
|
confirmed that we work with 1.0.1.
|
2011-05-11 12:29:08 +08:00 |
agentzh (章亦春)
|
9739fccaa5
|
added support for multi-value request headers in ngx.req.get_headers().
|
2011-05-10 09:39:28 +08:00 |
agentzh (章亦春)
|
23cad91f06
|
now we turn the ngx.req.header table into an ngx.req.get_headers() function; we also added ngx.req.set_header(name, value) and ngx.req.clear_header(name). thanks moodydeath.
|
2011-05-10 03:00:58 +08:00 |
agentzh (章亦春)
|
35b4c8d86d
|
implemented the ngx.req.header table interface for retrieving all the request headers for Lua. thanks moodydeath.
|
2011-05-09 23:37:06 +08:00 |
agentzh (章亦春)
|
08ac368102
|
marked features that require the ngx_devel_kit (NDK) module.
|
2011-05-04 11:59:18 +08:00 |
agentzh (章亦春)
|
babcd9e22c
|
documented that we work with nginx 1.0.0.
|
2011-05-01 23:44:04 +08:00 |
Wang Xiaozhe
|
580279dd39
|
add warns about data sharing trick in readme
|
2011-04-13 14:11:08 +08:00 |
agentzh (章亦春)
|
30170eff2f
|
added a quick note regarding ngx.OK/ngx.DONE/ngx.AGAIN/ngx.ERROR. thanks wendal.
|
2011-04-07 10:16:16 +08:00 |
agentzh (章亦春)
|
86d6b00f97
|
documented one known issue that ngx_lua cannot capture locations with internal redirections (either via error_page or ngx_echo's echo_exec directives or ngx_lua's ngx.exec()).
|
2011-04-06 21:45:44 +08:00 |
agentzh (章亦春)
|
271a7e184a
|
now we change the way we process HTTP 1.0 requests by automatically buffering all the user outputs generated by ngx.print()/ngx.say() calls, which is much more natural than the old broken way.
|
2011-04-05 00:32:46 +08:00 |
agentzh (章亦春)
|
d6f7dd5600
|
more README tweaks.
|
2011-03-30 11:54:45 +08:00 |
agentzh (章亦春)
|
52f027bb02
|
fixed another typo in README.
|
2011-03-30 11:51:31 +08:00 |
agentzh (章亦春)
|
f496213182
|
fixed a typo in README.
|
2011-03-30 11:50:56 +08:00 |
agentzh (章亦春)
|
f7b3925bb2
|
emphasized that the data sharing is per-worker not per-server.
|
2011-03-30 11:49:46 +08:00 |
agentzh (章亦春)
|
ae8c97c8cd
|
added a separate section "Data Sharing within an nginx worker.
|
2011-03-30 11:32:14 +08:00 |
agentzh (章亦春)
|
7a05704807
|
fixed a typo.
|
2011-03-30 11:29:48 +08:00 |
agentzh (章亦春)
|
d63963efba
|
documented in details about data sharing and race conditions by means of required Lua user modules.
|
2011-03-30 11:28:28 +08:00 |
agentzh (章亦春)
|
74ba36fea8
|
updated README to reflect the changes that we always add those extra linking options on darwin systems because it is too hard to tell if it is a x86_64 system or not.
|
2011-03-29 18:01:15 +08:00 |
Wang Xiaozhe
|
5a57432cbd
|
add missing module info for unit-test; remove unused code; update ndk dependency
|
2011-03-14 17:40:12 +08:00 |
agentzh (章亦春)
|
98924adaea
|
documented the ngx.is_subrequest attribute and enabled ngx.status and ngx.is_subrequest in set_by_lua* as well.
|
2011-03-11 11:36:52 +08:00 |
agentzh (章亦春)
|
a32193bdc0
|
now we encourage use of the client_body_in_single_buffer directive instead of big client_body_buffer_size.
|
2011-03-07 14:56:13 +08:00 |
agentzh (章亦春)
|
ccaf132169
|
updated the contexts each config directive can be used within.
|
2011-03-02 11:11:35 +08:00 |
agentzh (章亦春)
|
1db066e645
|
emphasized in README that Mac 64-bit users have to edit the "config" file themselves when building with LuaJIT 2.0 (for now).
|
2011-02-12 17:19:29 +08:00 |
agentzh (章亦春)
|
fde4b44e63
|
updated the Status section of README.
|
2011-02-12 15:17:59 +08:00 |
agentzh (章亦春)
|
06c71b8cc6
|
minor tweaks of README.
|
2011-02-12 15:16:33 +08:00 |
agentzh (章亦春)
|
44fb570985
|
fixed indentation.
|
2011-02-10 14:30:19 +08:00 |
agentzh (章亦春)
|
4de07de5dd
|
fixed a typo in README.
|
2011-02-10 14:17:38 +08:00 |
agentzh (章亦春)
|
699c4abd8c
|
added notes about variable number of subrequests for ngx.location.capture_multi to README. thanks Marcus Clyne.
|
2011-02-10 14:17:05 +08:00 |
agentzh (章亦春)
|
149fea4b47
|
states that we no longer require openssl in README.
|
2011-02-08 18:29:09 +08:00 |
agentzh (章亦春)
|
92520b0ced
|
mentioned the "cosocket" mechanism in the Future Plan section.
|
2011-02-05 19:30:48 +08:00 |