ASP.NET 4.6 没有在 HTTP2 中打开响应(azure 网站)
ASP.NET 4.6 doesn't turn response in HTTP2 (azure website)
我已将我的网站设置为 asp.net 4.6 运行时,该网站已准备就绪,只能在 https 中访问,因此满足这两个要求。我还使用 Chrome 或 IE11 等支持 HTTP2 的浏览器访问了该站点。该网站还托管为 Microsoft Azure 网站
我参考了以下网站
https://channel9.msdn.com/Events/Visual-Studio/Connect-event-2014/812 and http://www.dotnetcurry.com/aspnet/1127/aspnet-webforms-new-features
很遗憾,我无法与您共享该网站,因为它是客户的,我猜他不喜欢那样。
我想问你的是,有没有人已经在 Azure 上使用过 HTTP2 并且可能对我有一些提示或意见?谢谢!
ASP.NET 4.6 运行时仅支持 HTTP/2 on Windows 10 使用最新的 IIS 和 Windows 2016 IIS。不会将该功能添加到之前的 OS/IIS 连击中(我试过)。我认为 Azure 网站尚不支持 HTTP/2,至少当我几个月前检查时,可能不支持 Windows 2016/最新的 IIS,因为 Windows 2016 上次仍处于技术预览阶段我检查了。 (此外,我认为由于浏览器支持,您需要为 HTTP/2 连接使用 SSL...因此请确保为您的 Azure 网站尝试通过 https...)
@卡斯帕,
简答应该是"NO",暂不支持
下面有一个旧讨论link
https://superuser.com/questions/926663/iis-and-http-2-server-support
要检查 OS Azure App Service 正在 运行ning,您可以创建一个站点,从 scm 站点(https://{您的站点名称})转到您的调试控制台。scm.azurewebsites.net/DebugConsole), 和 运行 "ver"
来自维基百科https://en.wikipedia.org/wiki/List_of_Microsoft_Windows_versions
NT 6.2 是 Windows Server 2012
Auzre 应用服务最近(2018 年 1 月)升级到服务器 2016,团队成员 working on enabling HTTP/2 on the platform。
团队 2018 年 3 月 16 日的最新状态是:
Hi all, thank you for your patience! We are getting through a few last items getting ready to release HTTP/2 support very soon. I'll be notifying here and our team blog once available.
https://aka.ms/AppServiceBlog
我们正在为我们的一个站点(不在 Azure 上,但仍在较旧版本的 IIS 上)使用的解决方法是在应用程序前面使用启用了 HTTP/2 的 CDN。
HTTP2 现已在应用服务中启用,但默认情况下处于关闭状态。必须在应用服务设置中启用它:
公告post:
https://azure.microsoft.com/en-us/blog/announcing-http-2-support-in-azure-app-service/
我已将我的网站设置为 asp.net 4.6 运行时,该网站已准备就绪,只能在 https 中访问,因此满足这两个要求。我还使用 Chrome 或 IE11 等支持 HTTP2 的浏览器访问了该站点。该网站还托管为 Microsoft Azure 网站
我参考了以下网站 https://channel9.msdn.com/Events/Visual-Studio/Connect-event-2014/812 and http://www.dotnetcurry.com/aspnet/1127/aspnet-webforms-new-features
很遗憾,我无法与您共享该网站,因为它是客户的,我猜他不喜欢那样。
我想问你的是,有没有人已经在 Azure 上使用过 HTTP2 并且可能对我有一些提示或意见?谢谢!
ASP.NET 4.6 运行时仅支持 HTTP/2 on Windows 10 使用最新的 IIS 和 Windows 2016 IIS。不会将该功能添加到之前的 OS/IIS 连击中(我试过)。我认为 Azure 网站尚不支持 HTTP/2,至少当我几个月前检查时,可能不支持 Windows 2016/最新的 IIS,因为 Windows 2016 上次仍处于技术预览阶段我检查了。 (此外,我认为由于浏览器支持,您需要为 HTTP/2 连接使用 SSL...因此请确保为您的 Azure 网站尝试通过 https...)
@卡斯帕,
简答应该是"NO",暂不支持
下面有一个旧讨论link
https://superuser.com/questions/926663/iis-and-http-2-server-support
要检查 OS Azure App Service 正在 运行ning,您可以创建一个站点,从 scm 站点(https://{您的站点名称})转到您的调试控制台。scm.azurewebsites.net/DebugConsole), 和 运行 "ver"
来自维基百科https://en.wikipedia.org/wiki/List_of_Microsoft_Windows_versions
NT 6.2 是 Windows Server 2012
Auzre 应用服务最近(2018 年 1 月)升级到服务器 2016,团队成员 working on enabling HTTP/2 on the platform。
团队 2018 年 3 月 16 日的最新状态是:
Hi all, thank you for your patience! We are getting through a few last items getting ready to release HTTP/2 support very soon. I'll be notifying here and our team blog once available. https://aka.ms/AppServiceBlog
我们正在为我们的一个站点(不在 Azure 上,但仍在较旧版本的 IIS 上)使用的解决方法是在应用程序前面使用启用了 HTTP/2 的 CDN。
HTTP2 现已在应用服务中启用,但默认情况下处于关闭状态。必须在应用服务设置中启用它:
公告post: https://azure.microsoft.com/en-us/blog/announcing-http-2-support-in-azure-app-service/