Due to the NSURLRequest timeout issue in iOS 8 and above, I had to turn off keep alive in my apache server. I read about this https://stackoverflow.com/a/25996971/3162662 on how to set the BrowserMatch and I did it like this in httpd.conf:
<IfModule setenvif_module>
BrowserMatch "iOS 8\." nokeepalive
</IfModule>
But I wonder if this only applies to iOS 8? What about iOS 9? How can I match all requests from iOS?
Thanks!