1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-02-08 03:40:51 +02:00

[#488] added X-Accel-Buffering:no sse header

This commit is contained in:
Gani Georgiev 2022-09-16 11:19:31 +03:00
parent 1f5c3328e5
commit daffb0f86e

View File

@ -48,6 +48,9 @@ func (api *realtimeApi) connect(c echo.Context) error {
c.Response().Header().Set("Content-Type", "text/event-stream; charset=UTF-8")
c.Response().Header().Set("Cache-Control", "no-store")
c.Response().Header().Set("Connection", "keep-alive")
// https://github.com/pocketbase/pocketbase/discussions/480#discussioncomment-3657640
// https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffering
c.Response().Header().Set("X-Accel-Buffering", "no")
event := &core.RealtimeConnectEvent{
HttpContext: c,