Connect to Azure Keep-Alive

I used the Windows Azure website to host my website.

  • I want to enable Connection: Keep-Alive on my website, how do I enable it for my website?
  • How to check if I successfully enabled it on my website?
  • How to set timeout for Connection: Keep-Alive and how to determine the best value for timeout

My server is Windows and using IIS

+5
source share
1 answer

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> 
+4
source

Source: https://habr.com/ru/post/1211692/


All Articles