| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-11-11 | 1.6 kB | |
| v1.6.0 source code.tar.gz | 2025-11-11 | 316.0 kB | |
| v1.6.0 source code.zip | 2025-11-11 | 452.1 kB | |
| Totals: 3 Items | 769.7 kB | 0 | |
What’s Changed
New Features
- HTTP/2 enabled by default for all sites exposed through Wiredoor, improving performance and connection efficiency by @dmesad in https://github.com/wiredoor/wiredoor/pull/117
- HTTP/3 (QUIC) support added for one domain, configurable via the environment variable
NGINX_HTTP3_DOMAINby @dmesad in https://github.com/wiredoor/wiredoor/pull/117 - Automatic generation of
quic_host_keyto ensure persistent and stable QUIC connections across NGINX reloads by @dmesad in https://github.com/wiredoor/wiredoor/pull/117 - Added support for configuring
NGINX_CLIENT_MAX_BODY_SIZEvia environment variable.
Updates & Fixes
- Updated OAuth2 Proxy to version v7.13.0.
- Proxy buffering disabled globally to improve real-time streaming behavior and SSE compatibility.
- Fixed UI issues in the node details view and resolved a validation bug in the service form.
- Updated project dependencies to their latest stable versions.
Notes on HTTP/3
HTTP/3 (QUIC) can only be enabled for one domain per Wiredoor instance, as NGINX currently allows a single QUIC listener per address:port combination (UDP/443).
To enable it, add the following environment variable to your .env file:
:::bash
NGINX_HTTP3_DOMAIN=your-domain.example.com
Make sure that UDP port 443 is exposed in your docker-compose.yml:
:::yaml
ports:
- "443:443/tcp"
- "443:443/udp"
Then recreate the Wiredoor container
Full Changelog: https://github.com/wiredoor/wiredoor/compare/v1.5.2...v1.6.0