You can set most configuration options for IIS 8 on Azure websites. To enable keep-alive, add the following section to web.config
<configuration> <system.webServer> <httpProtocol allowKeepAlive="true" /> </system.webServer> </configuration>
source share