Nginx is a high-performance web server and reverse proxy, widely used for hosting websites and applications. HTTP/2 significantly improves web performance by enabling multiplexing, header compression, and other optimizations. In this guide, we’ll cover how to install Nginx on Ubuntu with HTTP/2 support.
Before installing Nginx, update your package list and system packages to ensure you have the latest software versions.
Ubuntu’s default repositories include Nginx, so you can install it using apt
:
Once the installation is complete, verify that Nginx is running:
If Nginx is not active, start it with:
To enable HTTP/2, modify the Nginx configuration file:
Find the following line:
Modify it to include http2
:
Save the changes (CTRL + X
, then Y
, and Enter
).
HTTP/2 requires SSL/TLS, so you need a valid SSL certificate. The easiest way is to use Let’s Encrypt with Certbot:
Follow the prompts to generate and install the certificate.
After enabling HTTP/2, restart Nginx to apply the changes:
Verify that HTTP/2 is working with:
You should see the HTTP/2
response header.
You have successfully installed Nginx with HTTP/2 support on Ubuntu. Your website will now benefit from improved performance and faster page loading times. If you need to make further optimizations, consider enabling caching, compression, and fine-tuning your Nginx configuration.