Skip to content

Commit 30ac4e3

Browse files
committed
Removed some span tags from Dynamic Modules.
1 parent 3e9c13e commit 30ac4e3

18 files changed

+13
-96
lines changed

content/nginx/admin-guide/dynamic-modules/brotli.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ The [ngx_brotli](https://github.com/google/ngx_brotli) module enables Brotli com
1717
- `ngx_brotli filter module` – for compressing responses on-the-fly
1818
- `ngx_brotli static module` - for serving pre-compressed files
1919

20-
<span id="prerequisites"></span>
21-
2220
## Prerequisites
2321

2422
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
@@ -37,7 +35,7 @@ The [ngx_brotli](https://github.com/google/ngx_brotli) module enables Brotli com
3735
sudo yum install epel-release -y
3836
```
3937

40-
<span id="install"></span>
38+
4139

4240
## Installation
4341

@@ -73,7 +71,7 @@ Install the Brotli module package `nginx-plus-module-brotli`.
7371
pkg install nginx-plus-module-brotli
7472
```
7573

76-
<span id="configure"></span>
74+
7775

7876
## Configuration
7977

@@ -109,7 +107,7 @@ After installation you will need to enable and configure Brotli modules in NGINX
109107
```
110108

111109

112-
<span id="info"></span>
110+
113111
## More Info
114112

115113
- [NGINX Module for Brotli Compression Reference](https://github.com/google/ngx_brotli)

content/nginx/admin-guide/dynamic-modules/cookie-flag.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ type:
1212

1313
> **Note**: The module was deprecated in [Release 23]({{< ref "nginx/releases.md#r23" >}}) and removed in [Release 26]({{< ref "nginx/releases.md#r26" >}}). The [`proxy_cookie_flags`](https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cookie_flags) directive implements native support for setting cookie flags and replaces the module. See [Native Method for Setting Cookie Flags](https://www.nginx.com/blog/nginx-plus-r23-released#cookie-flags) for details.
1414
15-
16-
<span id="install"></span>
17-
## Installation Instructions
15+
## Installation
1816

1917
1. Install the Cookie-Flag module.
2018

@@ -56,8 +54,6 @@ type:
5654
nginx -t && nginx -s reload
5755
```
5856

59-
60-
<span id="info"></span>
6157
## More Info
6258

6359
- [NGINX Module Reference for Adding Cookie Flag](https://github.com/AirisX/nginx_cookie_flag_module)

content/nginx/admin-guide/dynamic-modules/dynamic-modules.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ type:
99
- how-to
1010
---
1111

12-
<span id="overview"></span>
1312
## Overview
1413

1514
F5 NGINX Plus uses a modular architecture. New features and functionality can be added with software modules, which can be plugged into a running NGINX Plus instance on demand. Dynamic modules add functionality to NGINX Plus such as [geolocating users by IP address]({{< ref "geoip2.md" >}}), [resizing images]({{< ref "image-filter.md" >}}), and embedding [NGINX JavaScript njs]({{< ref "nginscript.md" >}}) or [Lua]({{< ref "nginx/admin-guide/dynamic-modules/lua.md" >}}) scripts into the NGINX Plus event‑processing model. Modules are created both by NGINX and third‑party developers.
@@ -66,8 +65,6 @@ For module‑specific instructions, see the list of modules in the same section
6665
- [SPNEGO]({{< ref "spnego.md" >}})
6766
- [XSLT]({{< ref "xslt.md" >}})
6867

69-
70-
<span id="prereq"></span>
7168
### Prerequisites
7269

7370
To get started using dynamic modules, first install the latest NGINX Plus release, following the [installation instructions]({{< ref "nginx/admin-guide/installing-nginx/installing-nginx-plus.md" >}}). Dynamic modules are supported in [NGINX Plus Release 9 (R9)]({{< ref "/nginx/releases.md#r9" >}}) and later.
@@ -123,8 +120,6 @@ To compile your own dynamic modules, please see our [blog](https://www.f5.com/co
123120

124121
To uninstall a dynamic module, please follow the [Uninstalling a dynamic module]({{< ref "uninstall.md" >}}) article.
125122

126-
127-
<span id="info"></span>
128123
## See Also
129124

130125
- [Installing NGINX Plus]({{< ref "nginx/admin-guide/installing-nginx/installing-nginx-plus.md" >}})

content/nginx/admin-guide/dynamic-modules/encrypted-session.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,12 @@ type:
1010

1111
The Encrypted Session dynamic module provides encryption and decryption support for NGINX variables based on AES-256 with MAC. It is usually used with the [Set-Misc](https://docs.nginx.com/nginx/admin-guide/dynamic-modules/set-misc/) dynamic module and the NGINX [`rewrite`](https://nginx.org/en/docs/http/ngx_http_rewrite_module.html) module.
1212

13-
14-
<span id="prereq"></span>
1513
## Prerequisites
1614

1715
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
1816

1917
2. Prior to installing the module, verify that the [NDK]({{< ref "ndk.md" >}}) module is already installed.
2018

21-
22-
<span id="install"></span>
2319
## Installation
2420

2521
1. Install the Encrypted Session module package `nginx-plus-module-encrypted-session`.
@@ -60,8 +56,6 @@ The Encrypted Session dynamic module provides encryption and decryption support
6056
pkg install nginx-plus-module-encrypted-session
6157
```
6258

63-
64-
<span id="configure"></span>
6559
## Configuration
6660

6761
After installation you will need to enable and configure the module in F5 NGINX Plus configuration file `nginx.conf`.
@@ -83,7 +77,6 @@ After installation you will need to enable and configure the module in F5 NGINX
8377
nginx -t && nginx -s reload
8478
```
8579

86-
<span id="info"></span>
8780
## More Info
8881

8982
- [NGINX encrypted-session-nginx-module Module Reference](https://github.com/openresty/encrypted-session-nginx-module)

content/nginx/admin-guide/dynamic-modules/fips.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ type:
1111

1212
For F5 NGINX Plus, the cryptographic boundary includes all functionality that is implemented by the [`http_ssl`](https://nginx.org/en/docs/http/ngx_http_ssl_module.html), [`http_v2`](https://nginx.org/en/docs/http/ngx_http_v2_module.html), [`stream_ssl`](https://nginx.org/en/docs/stream/ngx_stream_ssl_module.html), and [`mail_ssl`](https://nginx.org/en/docs/mail/ngx_mail_ssl_module.html) modules. These modules implement SSL and TLS operations for inbound and outbound connections which use HTTP, HTTP/2, TCP, and mail protocols.
1313

14-
15-
<span id="install"></span>
1614
## Installation
1715

1816
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
@@ -55,8 +53,6 @@ For F5 NGINX Plus, the cryptographic boundary includes all functionality that is
5553
pkg install nginx-plus-module-fips-check
5654
```
5755

58-
<span id="configure"></span>
59-
6056
## Configuration
6157

6258
After installation you will need to enable and configure the module in NGINX Plus configuration file `nginx.conf`.
@@ -75,8 +71,6 @@ After installation you will need to enable and configure the module in NGINX Plu
7571
nginx -t && nginx -s reload
7672
```
7773

78-
79-
<span id="info"></span>
8074
## More Info
8175

8276
- [FIPS Compliance for NGINX Plus](https://docs.nginx.com/nginx/fips-compliance-nginx-plus/)

content/nginx/admin-guide/dynamic-modules/geoip.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ type:
1111

1212
{{< note >}} MaxMind GeoLite Legacy databases are currently [discontinued](https://blog.maxmind.com/2018/01/discontinuation-of-the-geolite-legacy-databases), MaxMind GeoIP2 or Geolite2 databases and F5 NGINX Plus [GeoIP2 module]({{< ref "geoip2.md" >}}) should be used instead. {{< /note >}}
1313

14-
15-
<span id="install"></span>
1614
## Installation
1715

1816
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
@@ -46,8 +44,6 @@ type:
4644
apk add nginx-plus-module-geoip
4745
```
4846

49-
<span id="configure"></span>
50-
5147
## Configuration
5248

5349
After installation you will need to enable and configure the module in NGINX Plus configuration file `nginx.conf`.
@@ -71,7 +67,6 @@ After installation you will need to enable and configure the module in NGINX Plu
7167
nginx -t && nginx -s reload
7268
```
7369

74-
<span id="info"></span>
7570
## More Info
7671

7772
- [GeoIP2 Dynamic Module Installation Instructions]({{< ref "geoip2.md" >}})

content/nginx/admin-guide/dynamic-modules/geoip2.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ type:
1010
- how-to
1111
---
1212

13-
<span id="info"></span>
13+
1414
## Module Info
1515

1616
[MaxMind GeoIP2](https://www.maxmind.com/en/geoip2-databases) databases provide contextual data for a comprehensive profile of IP addresses, including geolocation data (region, state, city, postal code) and extra data (ISP, domain, connection type). Basing on these data, F5 NGINX Plus will be able to perform different user differentiation strategies, for example, provide different type of content depending on a country.
1717

1818

19-
<span id="install"></span>
19+
2020
## Installation
2121

2222
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
@@ -80,7 +80,7 @@ After installation you will need to enable and configure the module in NGINX Plu
8080
nginx -t && nginx -s reload
8181
```
8282

83-
<span id="info"></span>
83+
8484
## More Info
8585

8686
- [Restricting Access by Geographical Location]({{< ref "nginx/admin-guide/security-controls/controlling-access-by-geoip.md" >}})

content/nginx/admin-guide/dynamic-modules/headers-more.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type:
99
- how-to
1010
---
1111

12-
<span id="install"></span>
12+
1313
## Installation
1414

1515
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
@@ -72,7 +72,7 @@ After installation you will need to enable and configure the module in F5 NGINX
7272
nginx -t && nginx -s reload
7373
```
7474

75-
<span id="info"></span>
75+
7676
## More Info
7777

7878
- [NGINX ngx_headers_more Module Reference](https://github.com/openresty/headers-more-nginx-module)

content/nginx/admin-guide/dynamic-modules/http-substitutions-filter.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ type:
99
- how-to
1010
---
1111

12-
<span id="install"></span>
1312
## Installation
1413

1514
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
@@ -46,8 +45,6 @@ type:
4645
pkg install nginx-plus-module-subs-filter
4746
```
4847

49-
<span id="configure"></span>
50-
5148
## Configuration
5249

5350
After installation you will need to enable and configure the module in F5 NGINX Plus configuration file `nginx.conf`.
@@ -66,7 +63,6 @@ After installation you will need to enable and configure the module in F5 NGINX
6663
nginx -t && nginx -s reload
6764
```
6865

69-
<span id="info"></span>
7066
## More Info
7167

7268
- [NGINX Substitution Filter Module Reference](https://github.com/yaoweibin/ngx_http_substitutions_filter_module)

content/nginx/admin-guide/dynamic-modules/image-filter.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ type:
99
- how-to
1010
---
1111

12-
<span id="install"></span>
1312
## Installation
1413

1514
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
@@ -52,8 +51,6 @@ type:
5251
pkg install nginx-plus-module-image-filter
5352
```
5453

55-
<span id="configure"></span>
56-
5754
## Configuration
5855

5956
After installation you will need to enable and configure the module in F5 NGINX Plus configuration file `nginx.conf`.
@@ -72,8 +69,6 @@ After installation you will need to enable and configure the module in F5 NGINX
7269
nginx -t && nginx -s reload
7370
```
7471

75-
76-
<span id="info"></span>
7772
## More Info
7873

7974
- [NGINX Image Filter Module Reference](https://nginx.org/en/docs/http/ngx_http_image_filter_module.html)

content/nginx/admin-guide/dynamic-modules/lua.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@ type:
1010

1111
Integrate Lua co-routines into the NGINX event-processing model with the community-authored Lua dynamic module.
1212

13-
<span id="prereq"></span>
1413
## Prerequisites
1514

1615
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
1716

1817
2. Prior to installing the module, verify that the [NGINX Developer Kit (NDK)]({{< ref "nginx/admin-guide/dynamic-modules/ndk.md" >}}) module is already installed.
1918

20-
21-
<span id="install"></span>
2219
## Installation
2320

2421
Install the Lua module package `nginx-plus-module-lua`.
@@ -59,9 +56,6 @@ Integrate Lua co-routines into the NGINX event-processing model with the communi
5956
pkg install nginx-plus-module-lua
6057
```
6158

62-
63-
<span id="configure"></span>
64-
6559
## Configuration
6660

6761
After installation, enable and configure the modules in NGINX Plus configuration file `nginx.conf`.
@@ -84,8 +78,6 @@ After installation, enable and configure the modules in NGINX Plus configuration
8478
nginx -t && nginx -s reload
8579
```
8680

87-
88-
<span id="info"></span>
8981
## More Info
9082

9183
- [The `lua-nginx-module` Module Reference](https://github.com/openresty/lua-nginx-module)

content/nginx/admin-guide/dynamic-modules/ndk.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ The NGINX Developer Kit (NDK) module makes it easier for module developers to de
1212

1313
The NDK module is also a prerequisite for [Encrypted Session]({{< ref "encrypted-session.md" >}}), [Lua]({{< ref "nginx/admin-guide/dynamic-modules/lua.md" >}}), and [Set-Misc]({{< ref "nginx/admin-guide/dynamic-modules/set-misc.md" >}}) modules.
1414

15-
16-
<span id="install"></span>
1715
## Installation
1816

1917
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
@@ -56,8 +54,6 @@ The NDK module is also a prerequisite for [Encrypted Session]({{< ref "encrypted
5654
pkg install nginx-plus-module-ndk
5755
```
5856

59-
60-
<span id="configure"></span>
6157
## Configuration
6258

6359
After installation you will need to enable and configure the module in F5 NGINX Plus configuration file `nginx.conf`.
@@ -76,8 +72,6 @@ After installation you will need to enable and configure the module in F5 NGINX
7672
nginx -t && nginx -s reload
7773
```
7874

79-
80-
<span id="info"></span>
8175
## More Info
8276

8377
- [NDK Module Reference](https://github.com/vision5/ngx_devel_kit)

content/nginx/admin-guide/dynamic-modules/nginscript.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ type:
1010
- how-to
1111
---
1212

13-
<span id="install"></span>
1413
## Installation
1514

1615
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
@@ -53,9 +52,6 @@ type:
5352
pkg install nginx-plus-module-njs
5453
```
5554

56-
57-
<span id="configure"></span>
58-
5955
## Configuration
6056

6157
After installation you will need to enable and configure the module in F5 NGINX Plus configuration file `nginx.conf`.
@@ -75,8 +71,6 @@ After installation you will need to enable and configure the module in F5 NGINX
7571
nginx -t && nginx -s reload
7672
```
7773

78-
79-
<span id="info"></span>
8074
## More Info
8175

8276
- [njs Scripting Language Reference and Examples](https://nginx.org/en/docs/njs/)

content/nginx/admin-guide/dynamic-modules/nginx-waf.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ The F5 NGINX ModSecurity web application firewall (WAF) is built on ModSecurity
1313

1414
{{< note >}} The ModSecurity WAF module was deprecated since NGINX Plus [Release 29]({{< ref "nginx/releases.md#r29" >}}), and is no longer available since NGINX Plus [Release 32]({{< ref "nginx/releases.md#r32" >}}) {{< /note >}}
1515

16-
17-
<span id="install"></span>
1816
## Installation
1917

2018
1. Check the [Technical Specifications]({{< ref "nginx/technical-specs.md" >}}) page to verify that the module is supported by your operating system.
@@ -55,9 +53,6 @@ The F5 NGINX ModSecurity web application firewall (WAF) is built on ModSecurity
5553
apk add nginx-plus-module-modsecurity
5654
```
5755

58-
59-
<span id="configure"></span>
60-
6156
## Configuration
6257

6358
After installation you will need to enable and configure the module in NGINX Plus configuration file `nginx.conf`.
@@ -78,8 +73,6 @@ After installation you will need to enable and configure the module in NGINX Plu
7873

7974
4. [Configure](https://docs.nginx.com/nginx-waf/admin-guide/nginx-plus-modsecurity-waf-installation-logging/) the module.
8075

81-
82-
<span id="info"></span>
8376
## More Info
8477

8578
- [ModSecurity Documentation](https://github.com/SpiderLabs/ModSecurity/wiki)

0 commit comments

Comments
 (0)