Documentation : https://docs.bunkerweb.io/1.6.10~rc6/
Docker tags :
- All-in-one :
bunkerity/bunkerweb-all-in-one:1.6.10-rc6orghcr.io/bunkerity/bunkerweb-all-in-one:1.6.10-rc6 - BunkerWeb :
bunkerity/bunkerweb:1.6.10-rc6orghcr.io/bunkerity/bunkerweb:1.6.10-rc6 - Scheduler :
bunkerity/bunkerweb-scheduler:1.6.10-rc6orghcr.io/bunkerity/bunkerweb-scheduler:1.6.10-rc6 - Autoconf :
bunkerity/bunkerweb-autoconf:1.6.10-rc6orghcr.io/bunkerity/bunkerweb-autoconf:1.6.10-rc6 - UI :
bunkerity/bunkerweb-ui:1.6.10-rc6orghcr.io/bunkerity/bunkerweb-ui:1.6.10-rc6 - API :
bunkerity/bunkerweb-api:1.6.10-rc6orghcr.io/bunkerity/bunkerweb-api:1.6.10-rc6
Linux packages : https://packagecloud.io/app/bunkerity/bunkerweb/search?q=1.6.10~rc6&filter=all&dist=
Changelog :
- [BUGFIX]
misc: fix per-service HTTPS handshakes aborting withno ssl_client_hello_by_lua* defined in server <name>underDISABLE_DEFAULT_SERVER_STRICT_SNI=yesafter the rc5 NGINX 1.30.0 bump, by emitting a no-opssl_client_hello_by_lua_blockin per-service blocks. Unknown-SNI rejection on the default server is unchanged. - [BUGFIX]
database: add a__del__safety net on the SQLAlchemyDatabasewrapper so per-job engines dispose cleanly on GC. Without it, scheduler jobs reloaded viaimportlib.reloaddropped their pool connections without sendingCOM_QUIT(MariaDB/MySQL) or the protocolTerminate(PostgreSQL), producing a burst ofAborted connection ... (Got an error reading communication packets)warnings every cycle. - [FEATURE]
misc: newMAX_HEADERSsetting (default100) caps header lines per request, leveraging themax_headersdirective shipped with the NGINX 1.30.0 bump. - [FEATURE]
reverseproxy: new per-backendREVERSE_PROXY_HTTP_VERSIONsetting (default1.1, accepts1.0/1.1/2) lets operators opt the upstream leg onto HTTP/2, leveraging theproxy_http_version 2support shipped with the NGINX 1.30.0 bump. The WebSocket branch stays pinned to 1.1 since WS Upgrade is incompatible with HTTP/2 upstream. - [FEATURE]
templates: the bundleduiandapitemplates now pinREVERSE_PROXY_KEEPALIVE=yes, reusing the upstream TCP/TLS connection across admin clicks and API calls for lower click-to-render latency. - [PERF]
database: add 18 missing single-column indexes. (Fixes #3368, addresses #3367)