Archive for the ‘nginx’ tag
SOLVED: Problems with Safari 4, Nginx and Connections being reset
We had some issues with Safari 4 (only) and our Nginx load balancer setup. Turns out, it doesn’t like the keep alive settings to be anything but 0. The default for nginx was 65, which for the Safari 4 users, the site would consistently not provide the full content back to the client (we use Nginx to load balance between a few apache servers).
Setting the keepalive_timeout value to 0 solved the problem. Hopefully this helps someone out there.
Here is some more info on the issue from Ruby Forum.