mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-14 14:23:33 +01:00
How to configure proxy for SSE #81
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doebi on GitHub (May 27, 2025).
Hi, I am currently setting up an MCP Server and it uses SSE (Server Sent Events) to communicate. I get all sorts of timeouts and disconnects, and the docs state that running behind a proxy requires additional configuration:
https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-langchain.mcptrigger/#running-the-mcp-server-trigger-node-with-a-reverse-proxy
How do I do that configuration with godoxy?
Thanks
@yusing commented on GitHub (May 28, 2025):
GoDoxy flushes on every read, so I suspect the problem was from compression. Just pushed
v0.13.5which added a newdisable_compressionoption. Try this label:proxy.{alias}.disable_compression: true@doebi commented on GitHub (May 28, 2025):
Thanks for your prompt answer and looking into this.
Unforntunately, I still can't establish a connection. But the problem is more likely on another place, as multiple sites have reported the same problem:
@yusing commented on GitHub (May 29, 2025):
No problem, please let me know when it's fixed so I can confirm it's not GoDoxy's issue. Thanks.
@Nedomas commented on GitHub (Jun 2, 2025):
We just released Supergateway v3.1.0 that should address protocol version mismatch errors. Let me know if this is still not solved for you if you use Supergateway.
https://github.com/supercorp-ai/supergateway/releases/tag/v3.1.0
@yusing commented on GitHub (Jun 2, 2025):
@doebi does it work now?
@doebi commented on GitHub (Jun 2, 2025):
@yusing Yes, thank you. Together with the updated version from supergateway and the disabled compression in
v0.13.5I got to get n8n mcp server working behind godoxy as proxy.Thanks everyone.