Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/includes/waf/dockerfiles/alpine-oss.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
```dockerfile
# syntax=docker/dockerfile:1

# Supported OS_VER's are 3.16/3.17/3.19
ARG OS_VER="3.19"
# Supported OS_VER's are 3.22
ARG OS_VER="3.22"

# Base image
FROM alpine:${OS_VER}
Expand Down
4 changes: 2 additions & 2 deletions content/includes/waf/dockerfiles/alpine-plus.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
```dockerfile
# syntax=docker/dockerfile:1

# Supported OS_VER's are 3.16/3.17/3.19
ARG OS_VER="3.19"
# Supported OS_VER's are 3.22
ARG OS_VER="3.22"

# Base image
FROM alpine:${OS_VER}
Expand Down
37 changes: 37 additions & 0 deletions content/waf/changelog/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,43 @@ This changelog lists all of the information for F5 WAF for NGINX releases in 202

For older releases, check the changelogs for previous years: [2024]({{< ref "/waf/changelog/2024.md" >}}).


## F5 WAF for NGINX 5.10

_December 1th, 2025_

### New features

- Added support for NGINX Plus R35
- Added support for Alpine 3.22

### Important notes

- Alpine 3.19 is no longer supported
- Upgrade Go compiler to 1.24.10

### Resolved issues

- (99999) TBD

### Packages

{{< table >}}

| Distribution name | NGINX Open Source (5.10) | NGINX Plus (5.10) | NGINX Plus (5.10) |
| ------------------------ | ----------------------------------------------------------------- | -------------------------------------------------------------- |----------------------------------------------------|
| Alpine 3.22 | _app-protect-module-oss-1.27.4+5.442.0-r1.apk_ | _app-protect-module-plus-34+5.442.0-r1.apk_ | _app-protect-34.5.442.0-r1.apk_ |
| Amazon Linux 2023 | _app-protect-module-oss-1.27.4+5.442.0-1.amzn2023.ngx.x86_64.rpm_ | _app-protect-module-plus-34+5.442.0-1.amzn2023.ngx.x86_64.rpm_ | _app-protect-34+5.442.0-1.amzn2023.ngx.x86_64.rpm_ |
| Debian 11 | _app-protect-module-oss_1.27.4+5.442.0-1\~bullseye_amd64.deb_ | _app-protect-module-plus_34+5.442.0-1\~bullseye_amd64.deb_ | _app-protect_34+5.442.0-1\~bullseye_amd64.deb_ |
| Debian 12 | _app-protect-module-oss_1.27.4+5.442.0-1\~bookworm_amd64.deb_ | _app-protect-module-plus_34+5.442.0-1\~bookworm_amd64.deb_ | _app-protect_34+5.442.0-1\~bookworm_amd64.deb_ |
| Oracle Linux 8.1 | _app-protect-module-oss-1.27.4+5.442.0-1.el8.ngx.x86_64.rpm_ | _app-protect-module-plus-34+5.442.0-1.el8.ngx.x86_64.rpm_ | _app-protect-34+5.442.0-1.el8.ngx.x86_64.rpm_ |
| Ubuntu 22.04 | _app-protect-module-oss_1.27.4+5.442.0-1\~jammy_amd64.deb_ | _app-protect-module-plus_34+5.442.0-1\~jammy_amd64.deb_ | _app-protect_34+5.442.0-1\~jammy_amd64.deb_ |
| Ubuntu 24.04 | _app-protect-module-oss_1.27.4+5.442.0-1\~noble_amd64.deb_ | _app-protect-module-plus_34+5.442.0-1\~noble_amd64.deb_ | _app-protect_34+5.442.0-1\~noble_amd64.deb_ |
| RHEL 8 and Rocky Linux 8 | _app-protect-module-oss-1.27.4+5.442.0-1.el8.ngx.x86_64.rpm_ | _app-protect-module-plus-34+5.442.0-1.el8.ngx.x86_64.rpm_ | _app-protect-34+5.442.0-1.el8.ngx.x86_64.rpm_ |
| RHEL 9 and Rocky Linux 9 | _app-protect-module-oss-1.27.4+5.442.0-1.el9.ngx.x86_64.rpm_ | _app-protect-module-plus-34+5.442.0-1.el9.ngx.x86_64.rpm_ | _app-protect-34+5.442.0-1.el9.ngx.x86_64.rpm_ |

{{< /table >}}

## F5 WAF for NGINX 5.9

Released _September 29th, 2025_.
Expand Down
2 changes: 1 addition & 1 deletion content/waf/fundamentals/technical-specifications.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You can deploy F5 WAF for NGINX in the following environments:

| Distribution | Version |
| ------------------ | ------------ |
| Alpine Linux | 3.19 |
| Alpine Linux | 3.22 |
| Amazon Linux | 2023 |
| Debian | 11, 12 |
| Oracle Linux | 8.1 |
Expand Down
4 changes: 2 additions & 2 deletions content/waf/install/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -925,8 +925,8 @@ If you are not using using `custom_log_format.json` or the IP intelligence featu

```dockerfile
# syntax=docker/dockerfile:1
# For Alpine 3.19:
FROM alpine:3.19
# For Alpine 3.22:
FROM alpine:3.22

# Download and add the NGINX signing keys:
RUN wget -O /etc/apk/keys/nginx_signing.rsa.pub https://cs.nginx.com/static/keys/nginx_signing.rsa.pub \
Expand Down
Loading