Skip to content

Commit dc1dd59

Browse files
committed
Removed some span tags from Dynamic Modules.
1 parent 3758958 commit dc1dd59

18 files changed

+13
-95
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.
@@ -38,7 +36,7 @@ The [ngx_brotli](https://github.com/google/ngx_brotli) module enables Brotli com
3836
sudo yum install epel-release -y
3937
```
4038

41-
<span id="install"></span>
39+
4240

4341
## Installation
4442

@@ -79,7 +77,7 @@ Install the Brotli module package `nginx-plus-module-brotli`.
7977
sudo pkg install nginx-plus-module-brotli
8078
```
8179

82-
<span id="configure"></span>
80+
8381

8482
## Configuration
8583

@@ -115,7 +113,7 @@ After installation you will need to enable and configure Brotli modules in NGINX
115113
```
116114

117115

118-
<span id="info"></span>
116+
119117
## More Info
120118

121119
- [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

@@ -63,8 +61,6 @@ type:
6361
nginx -t && nginx -s reload
6462
```
6563

66-
67-
<span id="info"></span>
6864
## More Info
6965

7066
- [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`.
@@ -65,8 +61,6 @@ The Encrypted Session dynamic module provides encryption and decryption support
6561
sudo pkg install nginx-plus-module-encrypted-session
6662
```
6763

68-
69-
<span id="configure"></span>
7064
## Configuration
7165

7266
After installation you will need to enable and configure the module in F5 NGINX Plus configuration file `nginx.conf`.
@@ -92,7 +86,6 @@ After installation you will need to enable and configure the module in F5 NGINX
9286
nginx -t && nginx -s reload
9387
```
9488

95-
<span id="info"></span>
9689
## More Info
9790

9891
- [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.
@@ -60,8 +58,6 @@ For F5 NGINX Plus, the cryptographic boundary includes all functionality that is
6058
sudo pkg install nginx-plus-module-fips-check
6159
```
6260

63-
<span id="configure"></span>
64-
6561
## Configuration
6662

6763
After installation you will need to enable and configure the module in NGINX Plus configuration file `nginx.conf`.
@@ -84,8 +80,6 @@ After installation you will need to enable and configure the module in NGINX Plu
8480
nginx -t && nginx -s reload
8581
```
8682

87-
88-
<span id="info"></span>
8983
## More Info
9084

9185
- [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.
@@ -49,8 +47,6 @@ type:
4947
apk add nginx-plus-module-geoip
5048
```
5149

52-
<span id="configure"></span>
53-
5450
## Configuration
5551

5652
After installation you will need to enable and configure the module in NGINX Plus configuration file `nginx.conf`.
@@ -74,7 +70,6 @@ After installation you will need to enable and configure the module in NGINX Plu
7470
nginx -t && nginx -s reload
7571
```
7672

77-
<span id="info"></span>
7873
## More Info
7974

8075
- [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.
@@ -84,7 +84,7 @@ After installation you will need to enable and configure the module in NGINX Plu
8484
nginx -t && nginx -s reload
8585
```
8686

87-
<span id="info"></span>
87+
8888
## More Info
8989

9090
- [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.
@@ -81,7 +81,7 @@ After installation you will need to enable and configure the module in F5 NGINX
8181
nginx -t && nginx -s reload
8282
```
8383

84-
<span id="info"></span>
84+
8585
## More Info
8686

8787
- [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.
@@ -51,8 +50,6 @@ type:
5150
sudo pkg install nginx-plus-module-subs-filter
5251
```
5352

54-
<span id="configure"></span>
55-
5653
## Configuration
5754

5855
After installation you will need to enable and configure the module in F5 NGINX Plus configuration file `nginx.conf`.
@@ -75,7 +72,6 @@ After installation you will need to enable and configure the module in F5 NGINX
7572
nginx -t && nginx -s reload
7673
```
7774

78-
<span id="info"></span>
7975
## More Info
8076

8177
- [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.
@@ -57,8 +56,6 @@ type:
5756
sudo pkg install nginx-plus-module-image-filter
5857
```
5958

60-
<span id="configure"></span>
61-
6259
## Configuration
6360

6461
After installation you will need to enable and configure the module in F5 NGINX Plus configuration file `nginx.conf`.
@@ -81,8 +78,6 @@ After installation you will need to enable and configure the module in F5 NGINX
8178
nginx -t && nginx -s reload
8279
```
8380

84-
85-
<span id="info"></span>
8681
## More Info
8782

8883
- [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`.
@@ -64,9 +61,6 @@ Integrate Lua co-routines into the NGINX event-processing model with the communi
6461
sudo pkg install nginx-plus-module-lua
6562
```
6663

67-
68-
<span id="configure"></span>
69-
7064
## Configuration
7165

7266
After installation, enable and configure the modules in NGINX Plus configuration file `nginx.conf`.
@@ -93,8 +87,6 @@ After installation, enable and configure the modules in NGINX Plus configuration
9387
nginx -t && nginx -s reload
9488
```
9589

96-
97-
<span id="info"></span>
9890
## More Info
9991

10092
- [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.
@@ -61,8 +59,6 @@ The NDK module is also a prerequisite for [Encrypted Session]({{< ref "encrypted
6159
sudo pkg install nginx-plus-module-ndk
6260
```
6361

64-
65-
<span id="configure"></span>
6662
## Configuration
6763

6864
After installation you will need to enable and configure the module in F5 NGINX Plus configuration file `nginx.conf`.
@@ -85,8 +81,6 @@ After installation you will need to enable and configure the module in F5 NGINX
8581
nginx -t && nginx -s reload
8682
```
8783

88-
89-
<span id="info"></span>
9084
## More Info
9185

9286
- [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.
@@ -58,9 +57,6 @@ type:
5857
sudo pkg install nginx-plus-module-njs
5958
```
6059

61-
62-
<span id="configure"></span>
63-
6460
## Configuration
6561

6662
After installation you will need to enable and configure the module in F5 NGINX Plus configuration file `nginx.conf`.
@@ -84,8 +80,6 @@ After installation you will need to enable and configure the module in F5 NGINX
8480
nginx -t && nginx -s reload
8581
```
8682

87-
88-
<span id="info"></span>
8983
## More Info
9084

9185
- [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.
@@ -59,9 +57,6 @@ The F5 NGINX ModSecurity web application firewall (WAF) is built on ModSecurity
5957
apk add nginx-plus-module-modsecurity
6058
```
6159

62-
63-
<span id="configure"></span>
64-
6560
## Configuration
6661

6762
After installation you will need to enable and configure the module in NGINX Plus configuration file `nginx.conf`.
@@ -86,8 +81,6 @@ After installation you will need to enable and configure the module in NGINX Plu
8681

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

89-
90-
<span id="info"></span>
9184
## More Info
9285

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

0 commit comments

Comments
 (0)