Nginx 1.30 delivers production-ready Multipath TCP support, HTTP 103 Early Hints, and ECH encryption, marking significant performance and security improvements for web infrastructure.
The Nginx team has released version 1.30, the latest stable iteration of the world's most popular web server software. This release brings several major features from the 1.29.x mainline branch into production environments, including Multipath TCP support, HTTP 103 Early Hints, and Encrypted Client Hello functionality.
Multipath TCP: The Big Performance Win
Perhaps the most significant addition in Nginx 1.30 is production-ready support for Multipath TCP (MPTCP). This technology allows a single data connection to leverage multiple network paths simultaneously, providing both greater throughput and seamless handover across connections.
MPTCP works by splitting a single TCP connection across multiple network interfaces or paths. For example, a client could use both Wi-Fi and cellular data simultaneously, combining their bandwidth or failing over seamlessly if one connection drops. This is particularly valuable for mobile users and content delivery networks looking to maximize performance and reliability.
The feature, which debuted in the 1.29.7 mainline release last month, is now considered stable enough for production deployment. Web administrators can enable MPTCP to potentially double or triple throughput in multi-path environments while providing better resilience against network failures.
HTTP 103 Early Hints: Faster Page Loads
Nginx 1.30 introduces HTTP 103 Early Hints support, allowing servers to begin preloading resources like CSS and JavaScript even before the final response is ready. This feature works by sending HTTP 103 status codes that tell browsers to start fetching critical resources while the main response is still being generated.
Major browsers like Chrome already support Early Hints, making this a practical performance optimization for production sites. The implementation in Nginx 1.30 is straightforward to configure and can reduce perceived page load times by several hundred milliseconds on complex pages with many dependencies.
Enhanced Security with ECH
The release also adds Encrypted Client Hello (ECH) support for HTTP/2 backends. ECH is part of the TLS 1.3 specification that encrypts the Server Name Indication (SNI) field, preventing eavesdroppers from determining which websites a user is visiting.
This enhancement is particularly important for privacy-conscious organizations and those operating in regions with strict internet surveillance. ECH ensures that even the initial connection setup remains confidential, protecting against passive monitoring of web traffic patterns.
Additional Improvements
Beyond the headline features, Nginx 1.30 includes several other notable changes:
- Sticky sessions support for upstream servers, improving load balancing for applications that require session persistence
- Default proxy HTTP version set to HTTP/1.1 with Keep-Alive enabled, optimizing connection reuse
- Various bug fixes and performance optimizations from the mainline branch
Deployment Considerations
For system administrators considering the upgrade, Nginx 1.30 represents a significant step forward in both performance and security capabilities. The Multipath TCP support alone could justify an upgrade for organizations with mobile-heavy user bases or those looking to maximize throughput across diverse network conditions.
The HTTP 103 Early Hints feature requires minimal configuration changes but can provide measurable improvements in page load times, particularly for content-rich sites. Meanwhile, ECH support helps organizations meet evolving privacy standards without requiring major infrastructure changes.
Nginx 1.30 is available for download now, with packages expected to be available through standard package managers shortly. The release notes and detailed changelog are available on the official Nginx GitHub repository.

The release continues Nginx's tradition of balancing cutting-edge features with rock-solid stability, making it a compelling upgrade for production environments running the popular web server.

Comments
Please log in or register to join the discussion