Skip to content

Commit 61b62c4

Browse files
authored
Merge branch 'main' into move-legal-notice
2 parents e298847 + 85275b6 commit 61b62c4

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

content/nginx/admin-guide/installing-nginx/installing-nginx-plus.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,17 +171,26 @@ NGINX Plus can be installed on the following versions of Debian or Ubuntu:
171171
- **For Debian**:
172172

173173
```shell
174-
sudo apt update
175-
sudo apt install apt-transport-https lsb-release ca-certificates wget gnupg2 debian-archive-keyring
174+
sudo apt update && \
175+
sudo apt install apt-transport-https \
176+
lsb-release \
177+
ca-certificates \
178+
wget \
179+
gnupg2 \
180+
debian-archive-keyring
176181
```
177182

178183
- **For Ubuntu**:
179184

180185
```shell
181-
sudo apt update
182-
sudo apt install apt-transport-https lsb-release ca-certificates wget gnupg2 ubuntu-keyring
186+
sudo apt update && \
187+
sudo apt install apt-transport-https \
188+
lsb-release \
189+
ca-certificates \
190+
wget \
191+
gnupg2 \
192+
ubuntu-keyring
183193
```
184-
185194
1. Download and add NGINX signing key:
186195

187196
```shell

content/nginx/technical-specs.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,10 @@ See [Sizing Guide for Deploying NGINX Plus on Bare Metal Servers](https://www.ng
163163
- [Limit Requests](https://nginx.org/en/docs/http/ngx_http_limit_req_module.html) – Limit rate of request processing for a client IP address or other keyed value
164164
- [Limit Responses](https://nginx.org/en/docs/http/ngx_http_core_module.html#limit_rate) – Limit rate of responses per client connection
165165

166-
### HTTP/2 and SSL/TLS
166+
### HTTP/2, HTTP/3 and SSL/TLS
167167

168168
- [HTTP/2](https://nginx.org/en/docs/http/ngx_http_v2_module.html) – Process HTTP/2 traffic
169+
- [HTTP/3](https://nginx.org/en/docs/http/ngx_http_v3_module.html) – Process HTTP/3 traffic
169170
- [SSL/TLS](https://nginx.org/en/docs/http/ngx_http_ssl_module.html) – Process HTTPS traffic
170171

171172
### Mail

0 commit comments

Comments
 (0)