






















NGINX 1.29.6 and 1.29.7 introduce significant updates and mark the first in a planned series to add capabilities to NGINX Open Source formerly limited to NGINX Plus. With updates to core runtime behavior and network support, these releases ensure that NGINX can continue to meet the needs of modern applications and AI workloads.
Highlights of these releases include:
Together, these changes expand what operators can do with NGINX Open Source while simplifying configurations for optimizing performance to proxied services.
Open Sourced Sticky Cookies for Session Persistence
NGINX 1.29.6 adds support for cookie-based session persistence to open source, a capability previously only available commercially in NGINX Plus.
Sticky cookies allow NGINX to issue a session cookie and route subsequent requests from that client to the same upstream server. Unlike IP-based affinity methods, cookie persistence avoids issues introduced by NAT, mobile networks, carrier-grade proxies, or large-scale edge routing.
Example configuration:
upstream backend {
server backend1.example.com;
server backend2.example.com;
sticky cookie srv_id expires=1h domain=.example.com path=/;
}
Why it matters:
Who it helps:
Default to HTTP/1.1 for Upstream Connections
NGINX 1.29.7 now defaults to HTTP/1.1 when proxying to upstreams.
HTTP/1.1 enables persistent upstream connections via keep-alives, chunked transfer encoding, and broader compatibility with modern application frameworks. Learn more about this change in our dedicated post on this topic.
Why it matters:
Who it helps:
Multipath TCP (MPTCP) Support
NGINX 1.29.7 adds support for Multipath TCP (MPTCP). MPTCP allows a single TCP connection to use multiple network paths simultaneously, improving resilience and throughput in multi-homed or heterogeneous network environments.
Why it matters:
Who it helps:
A Deliberate Direction
NGINX 1.29.6 and 1.29.7 represent our continued effort to align NGINX Open Source more closely with modern application requirements. Over the next several months, we will continue to release more commercial features as open source and, while subject to change, we have made these and other plans public in our new Github roadmap.
Capabilities made available in NGINX 1.29.6 and 1.29.7, along with several bug and security fixes, mean that NGINX Open Source is now even more performant and production-ready. We encourage you to upgrade to NGINX 1.29.7 to take advantage of all the new features and ensure that you’re protected by all the latest security patches.
View all updates and fixes in GitHub:
1.29.6 -> https://github.com/nginx/nginx/releases/tag/release-1.29.6
1.29.7 -> https://github.com/nginx/nginx/releases/tag/release-1.29.7
Download NGINX and view the full changelog.

此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。