Skip to content

Commit 503f036

Browse files
authored
fix: dropdowns rendered as literal on Plus + NGINXaaS docs (#1378)
1 parent 155c199 commit 503f036

File tree

3 files changed

+25
-42
lines changed

3 files changed

+25
-42
lines changed

content/includes/nginx-plus/install/pin-to-version/pin-debian-ubuntu-R32.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,14 @@ To pin NGINX Plus to a specific version (for example, R33):
88
1. Update the repository base URL to the desired version:
99

1010
- **For Ubuntu**:
11-
12-
```shell
13-
https://pkgs.nginx.com/plus/R33/ubuntu
14-
```
11+
```shell
12+
https://pkgs.nginx.com/plus/R33/ubuntu
13+
```
1514

1615
- **For Debian**:
17-
18-
```shell
19-
https://pkgs.nginx.com/plus/R33/debian
20-
```
16+
```shell
17+
https://pkgs.nginx.com/plus/R33/debian
18+
```
2119

2220
3. Save the changes and exit.
2321

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

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,7 @@ This article explains how to install NGINX Plus on different operating systems,
9898
sudo wget -P /etc/yum.repos.d https://cs.nginx.com/static/files/nginx-plus-8.repo
9999
```
100100

101-
{{< details summary="Pin NGINX Plus to a specific version" >}}
102-
103-
{{< call-out "note">}}
104-
{{< include "nginx-plus/install/pin-to-version/pin-rhel8-R32.md" >}}
105-
{{< /call-out >}}
101+
{{< details summary="Pin NGINX Plus to a specific version" >}}{{< call-out "note">}}{{< include "nginx-plus/install/pin-to-version/pin-rhel8-R32.md" >}}{{< /call-out >}}
106102

107103
{{< /details >}}
108104

@@ -138,13 +134,7 @@ This article explains how to install NGINX Plus on different operating systems,
138134
sudo wget -P /etc/yum.repos.d https://cs.nginx.com/static/files/plus-9.repo
139135
```
140136

141-
{{< details summary="Pin NGINX Plus to a specific version" >}}
142-
143-
{{< call-out "note">}}
144-
{{< include "nginx-plus/install/pin-to-version/pin-rhel9-R32.md" >}}
145-
{{< /call-out >}}
146-
147-
{{< /details >}}
137+
{{< details summary="Pin NGINX Plus to a specific version" >}}{{< call-out "note">}}{{< include "nginx-plus/install/pin-to-version/pin-rhel9-R32.md" >}}{{< /call-out >}}{{< /details >}}
148138

149139
1. {{< include "nginx-plus/install/install-nginx-plus-package-dnf.md" >}}
150140

@@ -222,13 +212,7 @@ NGINX Plus can be installed on the following versions of Debian or Ubuntu:
222212
| sudo tee /etc/apt/sources.list.d/nginx-plus.list
223213
```
224214

225-
{{< details summary="Pin NGINX Plus to a specific version" >}}
226-
227-
{{< call-out "note">}}
228-
{{< include "nginx-plus/install/pin-to-version/pin-debian-ubuntu-R32.md" >}}
229-
{{< /call-out >}}
230-
231-
{{< /details >}}
215+
{{< details summary="Pin NGINX Plus to a specific version" >}}{{< call-out "note">}}{{< include "nginx-plus/install/pin-to-version/pin-debian-ubuntu-R32.md" >}}{{< /call-out >}}{{< /details >}}
232216

233217
1. Download the **nginx-plus** apt configuration to **/etc/apt/apt.conf.d**:
234218

content/nginxaas-azure/getting-started/create-deployment/deploy-azure-portal.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -65,22 +65,23 @@ You can start the NGINXaaS deployment process by visiting the [Create NGINXaaS](
6565
- If you plan on using an IPv6 address on the frontend, make sure the subnet is dual-stack, i.e., the subnet has both IPv4 and IPv6 address spaces. Attempting to use a subnet that is not dual-stack will cause deployment creation to fail.
6666
- Changes to a virtual network's DNS settings will not be applied automatically to your NGINXaaS deployment. To ensure DNS settings are applied, you must add any custom DNS servers to the VNET's DNS settings before creating an NGINXaaS deployment. As a workaround for existing deployments, we recommend using the [`resolver` directive](https://nginx.org/en/docs/http/ngx_http_core_module.html#resolver) to explicitly specify your name server(s) and the [`resolve` parameter](https://nginx.org/en/docs/http/ngx_http_upstream_module.html#resolve) to automatically re-resolve the domain name of the server without restarting NGINX.
6767

68-
{{< details summary="Resolver directive example" >}}
69-
70-
```nginx
71-
resolver 10.0.0.2 valid=10s;
72-
upstream backends {
73-
zone backends 64k;
74-
server backends.example.com:8080 resolve;
75-
}
76-
77-
server {
78-
location / {
79-
proxy_pass http://backends;
80-
}
68+
{{<details summary="Resolver directive example">}}
69+
70+
```nginx
71+
resolver 10.0.0.2 valid=10s;
72+
upstream backends {
73+
zone backends 64k;
74+
server backends.example.com:8080 resolve;
75+
}
76+
77+
server {
78+
location / {
79+
proxy_pass http://backends;
8180
}
82-
```
83-
{{< /details >}}
81+
}
82+
```
83+
84+
{{</details>}}
8485

8586

8687
1. Next, select **Tags**.

0 commit comments

Comments
 (0)