Skip to main content

Posts

Showing posts with the label HTTP2

Make much faster Nginx with enable HTTP/2

Hypertext Transfer Protocol Version 2 (HTTP/2) is the latest version of the HTTP protocol, published as an IETF standard in RFC 7540 in 2015. Why HTTP/2 need to update?   HTTP/2 is much faster than HTTP/1.1. The HTTP/2 protocol achieves this by enabling web browsers to send multiple, simultaneous requests to the server.  In order to make use of HTTP/2, you must jump through a few steps. Requirements   Must need Nginx version 1.9.5 or greater. You can check your Nginx version by running (nginx -v) command.   OpenSSL version 1.0.2 or greater. You can check your OpenSSL version by running (OpenSSL version) command.   SSL/TLS certificate from Let's Encrypt or a self-signed certificate. TLS 1.2 or higher protocol enabled. Otherwise, you will not be able to use HTTP/2. Implementations of HTTP/2 must use TLS version 1.2 or higher for HTTP/2 over TLS. See : How to install and use Let's Encrypt on a Linu...