phpjavascriptnginx

Force nginx to close connection instantly


How do I let nginx close the tcp connection instantly after the request is fulfilled?


Solution

  • I just found the solution:

    location /ip/ {
        keepalive_timeout 0;
    }