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
Minor updates for NGINX OSS and Plus installation guides. (#283)
* Updated versions in NGINX OSS Install Guide.
* Updated unpriv install installation to match script.
* Updated procedure of adding JWT in Install Guide.
Copy file name to clipboardExpand all lines: content/nginx/admin-guide/installing-nginx/installing-nginx-open-source.md
+31-33Lines changed: 31 additions & 33 deletions
Original file line number
Diff line number
Diff line change
@@ -47,9 +47,8 @@ NGINX, Inc. provides packages for the following CentOS, Oracle Linux, RHEL, Alm
47
47
48
48
|Version | Supported Platforms |
49
49
| ---| --- |
50
-
|7.4+ | x86_64, aarch64/arm64 |
51
-
|8x | x86_64, aarch64/arm64, s390x |
52
-
|9x | x86_64, aarch64/arm64, s390x |
50
+
|8x | x86_64, aarch64/arm64 |
51
+
|9x | x86_64, aarch64/arm64 |
53
52
54
53
{{</bootstrap-table>}}
55
54
@@ -155,7 +154,7 @@ The package can be installed from:
155
154
```shell
156
155
curl -I 127.0.0.1
157
156
HTTP/1.1 200 OK
158
-
Server: nginx/1.27.0
157
+
Server: nginx/1.27.4
159
158
```
160
159
161
160
<span id="prebuilt_debian"></span>
@@ -284,7 +283,7 @@ The package can be installed from:
284
283
```shell
285
284
curl -I 127.0.0.1
286
285
HTTP/1.1 200 OK
287
-
Server: nginx/1.27.0
286
+
Server: nginx/1.27.4
288
287
```
289
288
290
289
<span id="prebuilt_ubuntu"></span>
@@ -299,8 +298,8 @@ NGINX provides packages for the following Ubuntu operating systems:
299
298
| ---| ---| --- |
300
299
|20.04 | focal | x86_64, aarch64/arm64, s390x |
301
300
|22.04 | jammy | x86_64, aarch64/arm64, s390x |
302
-
|22.10|kinetic| x86_64, aarch64/arm64 |
303
-
|23.04|lunar| x86_64, aarch64/arm64 |
301
+
|24.04|noble| x86_64, aarch64/arm64 |
302
+
|24.10|oracular| x86_64, aarch64/arm64 |
304
303
305
304
{{</bootstrap-table>}}
306
305
@@ -412,7 +411,7 @@ The package can be installed from:
412
411
```shell
413
412
curl -I 127.0.0.1
414
413
HTTP/1.1 200 OK
415
-
Server: nginx/1.27.0
414
+
Server: nginx/1.27.4
416
415
```
417
416
418
417
<span id="prebuilt_suse"></span>
@@ -425,7 +424,6 @@ NGINX provides packages for SUSE Linux Enterprise Server:
425
424
426
425
|Version | Supported Platforms |
427
426
| ---| --- |
428
-
|SLES 12 SP5+ | x86_64 |
429
427
|SLES 15 SP2+ | x86_64 |
430
428
431
429
{{</bootstrap-table>}}
@@ -508,10 +506,10 @@ NGINX provides packages for the following Alpine Linux operating systems:
508
506
509
507
|Version | Supported Platforms |
510
508
| ---| --- |
511
-
|3.15 | x86_64, aarch64/arm64 |
512
-
|3.16 | x86_64, aarch64/arm64 |
513
-
|3.17 | x86_64, aarch64/arm64 |
514
509
|3.18 | x86_64, aarch64/arm64 |
510
+
|3.19 | x86_64, aarch64/arm64 |
511
+
|3.20 | x86_64, aarch64/arm64 |
512
+
|3.21 | x86_64, aarch64/arm64 |
515
513
516
514
{{</bootstrap-table>}}
517
515
@@ -689,9 +687,9 @@ Prior to compiling NGINX Open Source from source, you need to install librarie
689
687
- [PCRE](http://pcre.org/) – Supports regular expressions. Required by the NGINX [Core](https://nginx.org/en/docs/ngx_core_module.html) and [Rewrite](https://nginx.org/en/docs/http/ngx_http_rewrite_module.html) modules.
@@ -700,9 +698,9 @@ Prior to compiling NGINX Open Source from source, you need to install librarie
700
698
- [zlib](http://www.zlib.net/) – Supports header compression. Required by the NGINX [Gzip](https://nginx.org/en/docs/http/ngx_http_gzip_module.html) module.
701
699
702
700
```shell
703
-
wget http://zlib.net/zlib-1.2.13.tar.gz
704
-
tar -zxf zlib-1.2.13.tar.gz
705
-
cd zlib-1.2.13
701
+
wget http://zlib.net/zlib-1.3.1.tar.gz
702
+
tar -zxf zlib-1.3.1.tar.gz
703
+
cd zlib-1.3.1
706
704
./configure
707
705
make
708
706
sudo make install
@@ -711,9 +709,9 @@ Prior to compiling NGINX Open Source from source, you need to install librarie
711
709
- [OpenSSL](https://www.openssl.org/) – Supports the HTTPS protocol. Required by the NGINX [SSL](https://nginx.org/en/docs/http/ngx_http_ssl_module.html) module and others.
0 commit comments