Skip to content

Commit a698cb0

Browse files
simplagentzh
authored andcommitted
doc: updated the NDK repo URL to github.com/simplresty.
Signed-off-by: Yichun Zhang (agentzh) <[email protected]>
1 parent 3078ca6 commit a698cb0

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

README.markdown

+7-8
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ It is *highly* recommended to use [OpenResty releases](http://openresty.org) whi
270270
Alternatively, ngx_lua can be manually compiled into Nginx:
271271

272272
1. Install LuaJIT 2.0 or 2.1 (recommended) or Lua 5.1 (Lua 5.2 is *not* supported yet). LuaJIT can be downloaded from the [LuaJIT project website](http://luajit.org/download.html) and Lua 5.1, from the [Lua project website](http://www.lua.org/). Some distribution package managers also distribute LuaJIT and/or Lua.
273-
1. Download the latest version of the ngx_devel_kit (NDK) module [HERE](https://github.com/simpl/ngx_devel_kit/tags).
273+
1. Download the latest version of the ngx_devel_kit (NDK) module [HERE](https://github.com/simplresty/ngx_devel_kit/tags).
274274
1. Download the latest version of ngx_lua [HERE](https://github.com/openresty/lua-nginx-module/tags).
275275
1. Download the latest version of Nginx [HERE](http://nginx.org/) (See [Nginx Compatibility](#nginx-compatibility))
276276

@@ -941,7 +941,7 @@ The following dependencies are required to run the test suite:
941941
* Test::Nginx: <https://github.com/openresty/test-nginx>
942942

943943
* Nginx modules:
944-
* [ngx_devel_kit](https://github.com/simpl/ngx_devel_kit)
944+
* [ngx_devel_kit](https://github.com/simplresty/ngx_devel_kit)
945945
* [ngx_set_misc](https://github.com/openresty/set-misc-nginx-module)
946946
* [ngx_auth_request](http://mdounin.ru/files/ngx_http_auth_request_module-0.2.tar.gz) (this is not needed if you're using Nginx 1.5.4+.
947947
* [ngx_echo](https://github.com/openresty/echo-nginx-module)
@@ -1026,7 +1026,7 @@ See Also
10261026
* [Dynamic Routing Based on Redis and Lua](http://openresty.org/#DynamicRoutingBasedOnRedis)
10271027
* [Using LuaRocks with ngx_lua](http://openresty.org/#UsingLuaRocks)
10281028
* [Introduction to ngx_lua](https://github.com/openresty/lua-nginx-module/wiki/Introduction)
1029-
* [ngx_devel_kit](https://github.com/simpl/ngx_devel_kit)
1029+
* [ngx_devel_kit](https://github.com/simplresty/ngx_devel_kit)
10301030
* [echo-nginx-module](http://github.com/openresty/echo-nginx-module)
10311031
* [drizzle-nginx-module](http://github.com/openresty/drizzle-nginx-module)
10321032
* [postgres-nginx-module](https://github.com/FRiCKLE/ngx_postgres)
@@ -1594,7 +1594,7 @@ This directive can be freely mixed with all directives of the [ngx_http_rewrite_
15941594

15951595
As from the `v0.5.0rc29` release, Nginx variable interpolation is disabled in the `<lua-script-str>` argument of this directive and therefore, the dollar sign character (`$`) can be used directly.
15961596

1597-
This directive requires the [ngx_devel_kit](https://github.com/simpl/ngx_devel_kit) module.
1597+
This directive requires the [ngx_devel_kit](https://github.com/simplresty/ngx_devel_kit) module.
15981598

15991599
[Back to TOC](#directives)
16001600

@@ -1647,7 +1647,7 @@ and the Nginx config must be reloaded each time the Lua source file is modified.
16471647
The Lua code cache can be temporarily disabled during development by
16481648
switching [lua_code_cache](#lua_code_cache) `off` in `nginx.conf` to avoid reloading Nginx.
16491649

1650-
This directive requires the [ngx_devel_kit](https://github.com/simpl/ngx_devel_kit) module.
1650+
This directive requires the [ngx_devel_kit](https://github.com/simplresty/ngx_devel_kit) module.
16511651

16521652
[Back to TOC](#directives)
16531653

@@ -8160,7 +8160,7 @@ ndk.set_var.DIRECTIVE
81608160

81618161
**context:** *init_worker_by_lua&#42;, set_by_lua&#42;, rewrite_by_lua&#42;, access_by_lua&#42;, content_by_lua&#42;, header_filter_by_lua&#42;, body_filter_by_lua&#42;, log_by_lua&#42;, ngx.timer.&#42;, balancer_by_lua&#42;, ssl_certificate_by_lua&#42;, ssl_session_fetch_by_lua&#42;, ssl_session_store_by_lua&#42;*
81628162

8163-
This mechanism allows calling other nginx C modules' directives that are implemented by [Nginx Devel Kit](https://github.com/simpl/ngx_devel_kit) (NDK)'s set_var submodule's `ndk_set_var_value`.
8163+
This mechanism allows calling other nginx C modules' directives that are implemented by [Nginx Devel Kit](https://github.com/simplresty/ngx_devel_kit) (NDK)'s set_var submodule's `ndk_set_var_value`.
81648164

81658165
For example, the following [set-misc-nginx-module](http://github.com/openresty/set-misc-nginx-module) directives can be invoked this way:
81668166

@@ -8191,7 +8191,7 @@ Similarly, the following directives provided by [encrypted-session-nginx-module]
81918191
* [set_encrypt_session](http://github.com/openresty/encrypted-session-nginx-module#set_encrypt_session)
81928192
* [set_decrypt_session](http://github.com/openresty/encrypted-session-nginx-module#set_decrypt_session)
81938193

8194-
This feature requires the [ngx_devel_kit](https://github.com/simpl/ngx_devel_kit) module.
8194+
This feature requires the [ngx_devel_kit](https://github.com/simplresty/ngx_devel_kit) module.
81958195

81968196
[Back to TOC](#nginx-api-for-lua)
81978197

@@ -8296,4 +8296,3 @@ Special PCRE Sequences
82968296
----------------------
82978297

82988298
This section has been renamed to [Special Escaping Sequences](#special-escaping-sequences).
8299-

doc/HttpLuaModule.wiki

+7-8
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ It is *highly* recommended to use [http://openresty.org OpenResty releases] whic
204204
Alternatively, ngx_lua can be manually compiled into Nginx:
205205

206206
# Install LuaJIT 2.0 or 2.1 (recommended) or Lua 5.1 (Lua 5.2 is ''not'' supported yet). LuaJIT can be downloaded from the [http://luajit.org/download.html LuaJIT project website] and Lua 5.1, from the [http://www.lua.org/ Lua project website]. Some distribution package managers also distribute LuaJIT and/or Lua.
207-
# Download the latest version of the ngx_devel_kit (NDK) module [https://github.com/simpl/ngx_devel_kit/tags HERE].
207+
# Download the latest version of the ngx_devel_kit (NDK) module [https://github.com/simplresty/ngx_devel_kit/tags HERE].
208208
# Download the latest version of ngx_lua [https://github.com/openresty/lua-nginx-module/tags HERE].
209209
# Download the latest version of Nginx [http://nginx.org/ HERE] (See [[#Nginx Compatibility|Nginx Compatibility]])
210210
@@ -766,7 +766,7 @@ The following dependencies are required to run the test suite:
766766
** Test::Nginx: https://github.com/openresty/test-nginx
767767
768768
* Nginx modules:
769-
** [https://github.com/simpl/ngx_devel_kit ngx_devel_kit]
769+
** [https://github.com/simplresty/ngx_devel_kit ngx_devel_kit]
770770
** [https://github.com/openresty/set-misc-nginx-module ngx_set_misc]
771771
** [http://mdounin.ru/files/ngx_http_auth_request_module-0.2.tar.gz ngx_auth_request] (this is not needed if you're using Nginx 1.5.4+.
772772
** [https://github.com/openresty/echo-nginx-module ngx_echo]
@@ -845,7 +845,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
845845
* [http://openresty.org/#DynamicRoutingBasedOnRedis Dynamic Routing Based on Redis and Lua]
846846
* [http://openresty.org/#UsingLuaRocks Using LuaRocks with ngx_lua]
847847
* [https://github.com/openresty/lua-nginx-module/wiki/Introduction Introduction to ngx_lua]
848-
* [https://github.com/simpl/ngx_devel_kit ngx_devel_kit]
848+
* [https://github.com/simplresty/ngx_devel_kit ngx_devel_kit]
849849
* [[HttpEchoModule]]
850850
* [[HttpDrizzleModule]]
851851
* [https://github.com/FRiCKLE/ngx_postgres postgres-nginx-module]
@@ -1291,7 +1291,7 @@ This directive can be freely mixed with all directives of the [[HttpRewriteModul
12911291
12921292
As from the <code>v0.5.0rc29</code> release, Nginx variable interpolation is disabled in the <code><lua-script-str></code> argument of this directive and therefore, the dollar sign character (<code>$</code>) can be used directly.
12931293
1294-
This directive requires the [https://github.com/simpl/ngx_devel_kit ngx_devel_kit] module.
1294+
This directive requires the [https://github.com/simplresty/ngx_devel_kit ngx_devel_kit] module.
12951295
12961296
== set_by_lua_block ==
12971297
@@ -1337,7 +1337,7 @@ and the Nginx config must be reloaded each time the Lua source file is modified.
13371337
The Lua code cache can be temporarily disabled during development by
13381338
switching [[#lua_code_cache|lua_code_cache]] <code>off</code> in <code>nginx.conf</code> to avoid reloading Nginx.
13391339
1340-
This directive requires the [https://github.com/simpl/ngx_devel_kit ngx_devel_kit] module.
1340+
This directive requires the [https://github.com/simplresty/ngx_devel_kit ngx_devel_kit] module.
13411341
13421342
== content_by_lua ==
13431343
@@ -6926,7 +6926,7 @@ This feature requires at least ngx_lua <code>v0.10.0</code>.
69266926
69276927
'''context:''' ''init_worker_by_lua*, set_by_lua*, rewrite_by_lua*, access_by_lua*, content_by_lua*, header_filter_by_lua*, body_filter_by_lua*, log_by_lua*, ngx.timer.*, balancer_by_lua*, ssl_certificate_by_lua*, ssl_session_fetch_by_lua*, ssl_session_store_by_lua*''
69286928
6929-
This mechanism allows calling other nginx C modules' directives that are implemented by [https://github.com/simpl/ngx_devel_kit Nginx Devel Kit] (NDK)'s set_var submodule's <code>ndk_set_var_value</code>.
6929+
This mechanism allows calling other nginx C modules' directives that are implemented by [https://github.com/simplresty/ngx_devel_kit Nginx Devel Kit] (NDK)'s set_var submodule's <code>ndk_set_var_value</code>.
69306930
69316931
For example, the following [[HttpSetMiscModule]] directives can be invoked this way:
69326932
@@ -6956,7 +6956,7 @@ Similarly, the following directives provided by [[HttpEncryptedSessionModule]] c
69566956
* [[HttpEncryptedSessionModule#set_encrypt_session|set_encrypt_session]]
69576957
* [[HttpEncryptedSessionModule#set_decrypt_session|set_decrypt_session]]
69586958
6959-
This feature requires the [https://github.com/simpl/ngx_devel_kit ngx_devel_kit] module.
6959+
This feature requires the [https://github.com/simplresty/ngx_devel_kit ngx_devel_kit] module.
69606960
69616961
== coroutine.create ==
69626962
'''syntax:''' ''co = coroutine.create(f)''
@@ -7037,4 +7037,3 @@ This section is just holding obsolete documentation sections that have been eith
70377037
== Special PCRE Sequences ==
70387038
70397039
This section has been renamed to [[#Special Escaping Sequences|Special Escaping Sequences]].
7040-

0 commit comments

Comments
 (0)