/
How-To enable HTTP/2

How-To enable HTTP/2

Introduction

HTTP/2 is the next-generation HTTP protocol that improves website performance and efficiency. It is designed to reduce latency, enhance security, and optimize network resource usage compared to HTTP/1.1.

In Microsoft IIS (Internet Information Services), HTTP/2 is supported starting from Windows Server 2016 and Windows 10.

This guide will walk you through enabling HTTP/2 on Windows and IIS.

Step 1 - Check if HTTP/2 is enabled in the Windows Registry

Press Win + R and type regedit and hit enter. Now navigate to the following path:

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\HTTP\Parameters

There should be an entry called EnableHttp2 with a value of 2.

Step 2 - If it’s not enabled, enable it

Should there be no such value or a value of 0, you will need to enable it. Press Win + R and type powershell and execute the following (privileged) command:

New-ItemProperty -Path "HKLM:\System\CurrentControlSet\Services\HTTP\Parameters" -Name "EnableHttp2" -Value 1 -PropertyType DWORD -Force

You will then also need to restart IIS.

Step 3 - Verify

Open the Developer Tools by pressing F12 in Chrome / Firefox / Edge and open up your page. Make sure you have the Protocol column enabled and check that the value is h2.

image-20250219-154815.png

You might also need to enable HTTP/2 support on all involved network components such as any Load Balancer or Web Application Firewall.

Related content

MariaDB Performance Optimization Guidelines
MariaDB Performance Optimization Guidelines
Read with this
System requirements CoreOne Web Services release 7.x and above
System requirements CoreOne Web Services release 7.x and above
More like this
System requirements CoreOne Web Services release 9.x and above
System requirements CoreOne Web Services release 9.x and above
More like this
System requirements CoreOne Suite All-In-One
System requirements CoreOne Suite All-In-One
More like this
System requirements CoreOne Suite Web Services
System requirements CoreOne Suite Web Services
More like this
System requirements CoreOne Application Services release 8.x and above
System requirements CoreOne Application Services release 8.x and above
More like this

© ITSENSE AG. Alle Rechte vorbehalten. ITSENSE und CoreOne sind eingetragene Marken der ITSENSE AG.