I'm receiving a message "Failed to load resource: The network connection was lost." in my application, which uses ajax requests to get content from server. This error is only in Safari, other browsers are ok.
I was searching last few hours and found that it can be due to http headers:
Transfer-Encoding : chunked
Connection: keep-alive
Content-Length
I've found something similar: https://github.com/woothemes/woocommerce/issues/7176 On the bottom is told that they set
BrowserMatch "Safari" nokeepalive
in .htaccess.
Is there any similar solution or settings for nginx server?
Thank you
JF