사용자 도구

사이트 도구


springframework:httpstream

문서의 이전 판입니다!


Spring HTTP Streaming

Reverse Proxy(nginx) 설정

location /path/to/sse {
  proxy_pass http://chat_dev_upstream;
  proxy_buffering off;
  proxy_cache off;
  proxy_set_header Host $host;
  proxy_set_header Connection '';
  proxy_http_version 1.1;
  chunked_transfer_encoding off;
}

참고

springframework/httpstream.1641272596.txt.gz · 마지막으로 수정됨: 2022/01/04 14:03 저자 kwon37xi