Skip to content

Commit 79342fd

Browse files
committed
change: now we require at least nginx 1.13.6 for this module.
1 parent fb1ecc7 commit 79342fd

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -440,9 +440,9 @@ Nginx Compatibility
440440

441441
The latest version of this module is compatible with the following versions of Nginx:
442442

443-
* 1.13.x >= 1.13.3 (last tested: 1.13.6)
443+
* 1.13.x >= 1.13.6
444444

445-
Nginx cores older than 1.13.3 (exclusive) are *not* tested and may or may not work. Use at your own risk!
445+
Nginx cores older than 1.13.6 (exclusive) are *not* tested and may or may not work. Use at your own risk!
446446

447447
[Back to TOC](#table-of-contents)
448448

@@ -458,9 +458,9 @@ This module can be manually compiled into Nginx or OpenResty:
458458
Build the source of NGINX or OpenResty with this module, like below:
459459

460460
```bash
461-
wget 'http://nginx.org/download/nginx-1.13.3.tar.gz'
462-
tar -xzvf nginx-1.13.3.tar.gz
463-
cd nginx-1.13.3/
461+
wget 'http://nginx.org/download/nginx-1.13.6.tar.gz'
462+
tar -xzvf nginx-1.13.6.tar.gz
463+
cd nginx-1.13.6/
464464

465465
# tell nginx's build system where to find LuaJIT 2.1:
466466
export LUAJIT_LIB=/path/to/luajit/lib
@@ -535,7 +535,7 @@ Copyright and License
535535

536536
This module is licensed under the BSD license.
537537

538-
Copyright (C) 2009-2017, by Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>, OpenResty Inc.
538+
Copyright (C) 2009-2018, by Yichun "agentzh" Zhang (章亦春) <agentzh@gmail.com>, OpenResty Inc.
539539

540540
Copyright (C) 2009-2016, by Xiaozhe Wang (chaoslawful) <chaoslawful@gmail.com>.
541541

src/ngx_stream_lua_common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
#endif
4444

4545

46-
#if !defined(nginx_version) || (nginx_version < 1006000)
47-
#error at least nginx 1.6.0 is required but found an older version
46+
#if !defined(nginx_version) || (nginx_version < 1013006)
47+
#error at least nginx 1.13.6 is required but found an older version
4848
#endif
4949

5050

0 commit comments

Comments
 (0)