Hello, does this setting (keepalive_timeout) close only idle connections after the set time? if I set keepalive_timeout 5; this wont close current active connections if it is still downloading/working, right? I am trying to maximize the server for 1000's of users so I may have 600 active requests at the same time so I want to free up idle connections as soon as possible so I don't hit the 1024 max connections. So am I right, that this is the time in seconds to close stale/idle connections and wont affect active ones? Thanks