How to disable HTTP/2 on IIS of Windows Server 2016

后端 未结 2 962
我寻月下人不归
我寻月下人不归 2021-01-02 11:05

We are running into some issues that seem to be affected by http2 and I want to turn it off temporarily to troubleshoot. I tried the registry keys outlined in this question

2条回答
  •  余生分开走
    2021-01-02 11:42

    1. Start → regedit

    2. Navigate to the folder/path: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\HTTP\Parameters

    3. Under the Parameters folder, right-click the white-space, add 2 new DWORD (32-bit) values:

      • EnableHttp2Tls
      • EnableHttp2Cleartext
    4. Ensure both new values have been set to 0(disabled) by right-clicking the value and clicking "Modify..."

    5. Restart the OS.

提交回复
热议问题