How do I let nginx close the tcp connection instantly after the request is fulfilled?
相关问题
- Views base64 encoded blob in HTML with PHP
- Is there a limit to how many levels you can nest i
- Laravel Option Select - Default Issue
- How to toggle on Order in ReactJS
- PHP Recursively File Folder Scan Sorted by Modific
The connection is maintained between the server and the browser thanks to the Keep Alive requests exchanged between them.
You can disable the Keep Alive behavior for a particular user agent: see the nginx manual
You can probably trick your browser to have a given user agent, having the keep alive cut only for your particular needs.
I just found the solution: