Sameer Naik
Sameer Naik

Reputation: 1412

Is only AWS ELB supporting supporting http/2 sufficient in stack

If we have AWS ELB terminating SSL and Apache 2.2 with mod_proxy talking to tomcat 7.x. Apache and tomcat do not support HTTP/2.

Will we get any performance gains if only AWS ELB starts supporting HTTP/2?

Thanks, Sameer

Upvotes: 1

Views: 106

Answers (1)

datasage
datasage

Reputation: 19573

As of today, the ELB does not natively support http2. You can enable support by handling SSL termination on your instances and using tcp passthrough for all connections.

In order to do this, you will need to change from apache to nginx as apache does not officially support it yet.

Upvotes: 2

Related Questions