Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NGINX は現在、アプリケーションのプロキシとして実行されていますが、最近、comet とtransfer-encoding: chunked. NGINX がコンテンツを適切に送り返さず、代わりにコメットをバッファリングすることで、応答をいじっていることに気付きました。
transfer-encoding: chunked
これを機能させるための適切な設定は何ですか? 他のリクエストに干渉しないように URI 固有にする必要がありますか?
ありがとう
以下の設定で修正できました。
proxy_buffering off; proxy_connect_timeout 6000; proxy_send_timeout 6000; proxy_read_timeout 6000;