feat(server): add opt-in gzip and WebSocket compression config#933
Closed
efiten wants to merge 1 commit intoKpa-clawbot:masterfrom
Closed
feat(server): add opt-in gzip and WebSocket compression config#933efiten wants to merge 1 commit intoKpa-clawbot:masterfrom
efiten wants to merge 1 commit intoKpa-clawbot:masterfrom
Conversation
Adds a `compression` config block (disabled by default) to let operators
enable HTTP gzip and WebSocket permessage-deflate when sitting behind a
reverse proxy that does not already compress upstream responses.
"compression": { "gzip": true, "websocket": true }
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
|
Duplicate of #934 which includes the e2e fix for the detached-element race. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
compressionconfig block toconfig.json(both fields default tofalse)compression.gzip: true— wraps the HTTP handler with a gzip middleware; compresses API responses and static assets when the client sendsAccept-Encoding: gzip. WebSocket upgrade requests are passed through unmodifiedcompression.websocket: true— enablespermessage-deflateon the gorilla WebSocket upgraderMotivation
Operators running behind a reverse proxy that does not compress upstream responses (e.g. nginx proxying to the Go server over a separate network leg) get no compression today. This adds an opt-in way to compress at the source.
Usage
Test plan
TestCompressionConfigDefaults— nil config returns false for both helpersTestCompressionConfigExplicitFalse— explicit false returns falseTestCompressionConfigEnabled— explicit true returns trueTestGZipMiddlewareCompresses— response is valid gzip whenAccept-Encoding: gzipTestGZipMiddlewareSkipsNoAcceptEncoding— plain response when no headerTestGZipMiddlewareSkipsWebSocket— WebSocket upgrade not compressedNewHub()calls untouched)🤖 Generated with Claude Code