我使用Windows Azure网站来托管我的网站。
Connection: Keep-Alive
,如何为我的网站启用它?timeout
设置Connection: Keep-Alive
以及如何确定timeout
的最佳价值我的服务器是Windows并使用IIS
答案 0 :(得分:6)
您也可以在Azure网站中设置IIS 8的大多数配置选项。要启用keep-alive,请在web.config中添加以下部分
<configuration>
<system.webServer>
<httpProtocol allowKeepAlive="true" />
</system.webServer>
</configuration>