• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » HTTP/3 : Basic Details and Present Deployment Options

By Abhishek Ghosh May 1, 2023 8:06 am Updated on May 1, 2023

HTTP/3 : Basic Details and Present Deployment Options

Advertisement

HTTP up to version 2 relies on the Transmission Control Protocol (TCP) as the transport protocol. TCP acknowledges receipt of each data packet. As a result, in the event of a packet loss, all other packets have to wait for the lost one to be retransmitted (head-of-line blocking).

Google has been working on an alternative since 2012 under the name QUIC, which was adopted by the IETF and standardized in 2021. QUIC is a transport protocol that builds on connectionless UDP and provides missing properties such as reliability and connection-oriented communication. Connections are encrypted, for which QUIC uses TLS version 1.3. QUIC supports multiplexing of multiple data streams, bypassing head-of-line blocking. If a packet is lost at QUIC, it only blocks the streams that were included in that packet. The connection negotiation of QUIC is optimized to reduce the latency required to transmit the actual payload. In November 2018, the IETF decided that HTTP over QUIC should be called HTTP/3. In June 2022, HTTP/3 was standardized as RFC 9114.

Vim
1
https://datatracker.ietf.org/doc/html/rfc9114

Even with HTTP/3, data streams are processed separately. If a packet is lost along the way, it no longer affects all data streams, as is the case with HTTP/2. With HTTP/3, the affected stream will wait for the missing packet to arrive. HTTP/3 is generally encrypted and promises significant speed advantages over HTTP/2 with TLS. HTTP/3 is supported by 75% of web browsers and 26% of websites. Among the 26% of the websites, 12-13% are probably due to routing through Cloudflare.

Advertisement

---

HTTP3 Basic Details and Present Deployment Options

 

Present Deployment Options of HTTP/3

 

At the time of writing, the Apache webserver project has no production line solution. Implementing HTTP/3 would be a lot of work. The troublesome part is that both HTTP/2 and HTTP/3 get ahead by being layer 4 to layer 7 protocols. HTTP/1 is working at layer 7. The Apache server was designed to be an OSI layer 7 component.

The acceptable method is to compile NGINX with quiche, but this is also not very reliable and suitable for testing purposes. We can run NGINX using HTTP/3 only on 443 with only QUIC. It will use UDP. In such case, we can use Apache on 443 which will use TCP. In that case, the NGINX configuration will be like this:

Vim
1
2
3
4
listen 1.2.3.4:443 quic reuseport;
location / {
     proxy_pass https://apache-httpd-server.tld:443;
}

Another option is to switch to LiteSpeed or Caddy:

Vim
1
2
https://www.litespeedtech.com/products/litespeed-web-server
https://caddyserver.com/

OpenLiteSpeed is the Open Source edition of paid LiteSpeed Web Server. OpenLiteSpeed contains all of the essential features found in paid LiteSpeed. CloudFlare and NGINX have already written their official opinion:

Vim
1
2
https://blog.cloudflare.com/experiment-with-http-3-using-nginx-and-quiche/
https://www.nginx.com/blog/introducing-technology-preview-nginx-support-for-quic-http-3/

H2O supports HTTP/1.x, HTTP/2 and HTTP/3, but usage of H2O for MySQL-PHP stack is less heard. HTTP/3 changes the internals of this prioritization system which was first found in HTTP/2. If we are not using a valid TLS certificate signed by a cert authority then we cannot use QUIC. Another hurdle is that it requires more CPU usage for both the server.

So, the present option is using LiteSpeed server and/or CloudFlare.

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to HTTP/3 : Basic Details and Present Deployment Options

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • What is QUIC Protocol?

    In 2014, Google announced about QUIC, a new data transfer protocol based on UDP and thought for the modern Internet. What is QUIC Protocol?

  • Steps To Install Nginx Plus on Ubuntu Server (HP Cloud)

    Here Are the Steps To Install Nginx Plus on Ubuntu Server Running on HP Cloud. Nginx Plus is the Paid Version of Nginx with Extra Features.

  • HTTP/3 : The Next Protocol After HTTP/2 and HTTP

    The word HTTP/3 will astonish many as HTTP/2 yet not widely adapted (34% world adoption rate). HTTP/3 or HTTP-over-QUIC is the next protocol after HTTP/2 and HTTP 1. HTTP/3 will be a combination of SSL and TCP. HTTP/3 will use QUIC for transport. HTTP/3 will be the third major version of the Hypertext Transfer Protocol […]

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Hybrid Multi-Cloud Environments Are Becoming UbiquitousJuly 12, 2023
  • Data Protection on the InternetJuly 12, 2023
  • Basics of BJT TransistorJuly 11, 2023
  • What is Confidential Computing?July 11, 2023
  • How a MOSFET WorksJuly 10, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy