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: src/lib.rs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,11 @@
7
7
//! NGINX modules can be built against a particular version of NGINX. The following environment variables can be used
8
8
//! to specify a particular version of NGINX or an NGINX dependency:
9
9
//!
10
-
//! * `ZLIB_VERSION` (default 1.2.13) -
11
-
//! * `PCRE2_VERSION` (default 10.42)
12
-
//! * `OPENSSL_VERSION` (default 3.0.7)
13
-
//! * `NGX_VERSION` (default 1.23.3) - NGINX OSS version
14
-
//! * `NGX_DEBUG` (default to false)- if set to true, then will compile NGINX `--with-debug` option
10
+
//! * `ZLIB_VERSION` (default 1.3.1) - zlib version
11
+
//! * `PCRE2_VERSION` (default 10.42 for NGINX 1.22.0 and later, or 8.45 for earlier) - PCRE1 or PCRE2 version
12
+
//! * `OPENSSL_VERSION` (default 3.2.1 for NGINX 1.22.0 and later, or 1.1.1w for earlier) - OpenSSL version
13
+
//! * `NGX_VERSION` (default 1.26.1) - NGINX OSS version
14
+
//! * `NGX_DEBUG` (default to false)- if set to true, then will compile NGINX `--with-debug` option
15
15
//!
16
16
//! For example, this is how you would compile the [examples](https://github.com/nginxinc/ngx-rust/tree/master/examples) using a specific version of NGINX and enabling
0 commit comments