http2 Questions
2
Solved
When using SSE through the HTML5 EventSource object, do the requests utilise the HTTP/2 multiplexing / pipelining features? In particular, will SSE requests in different tabs (re)use the same HTTP/...
Conventioneer asked 1/9, 2016 at 14:53
3
Solved
Does anyone have the experience using HTTP2 server behind AWS ELB running in TCP Mode?
As I know, AWS ELB does not support HTTP2 now, however, by using TCP mode, it should pass the request to the ...
Crocoite asked 3/12, 2015 at 3:11
1
I am trying to understand the way the HTTP/2 protocol compresses the Data field. I didn't find an algorithm in the rfc. I know its a binary protocol.
I am looking for a way to get the binary protoc...
Abrasion asked 17/8, 2016 at 15:34
1
Solved
I know most browsers support http/2 for loading the pages but does this mean I can leverage it when I make api calls using XmlHttpRequest ?
More specifically my question is if I make 2 calls to fe...
Incorporeity asked 12/8, 2016 at 15:38
2
Solved
So far all the tutorials tell me that I need to enable SSL on my server to have HTTP/2 support.
In the given scenario, we have nginx in front of the backend Tomcat/Jetty server(s), and even though...
Bathysphere asked 2/8, 2016 at 20:55
4
Google Pagespeed complains when you have blocking CSS in an external file. In HTTP/1 this probably makes sense, but what about now with HTTP/2 ?
If you inline critical CSS (above the fold), that b...
1
I am experimenting with migration to http/2. I have set up a Wordpress website and configured NGINX to serve it using http/2 (using SSL/TLS).
My understanding of http/2 is that by default it uses ...
1
I'm trying to figure out a good production workflow that plays nice with the development workflow. The need is to exclude 1MB of external libraries from the build, then use a CDN to host them separ...
Maldon asked 23/6, 2016 at 18:45
2
The most use cases for http/2 server push is to pre-emptively push assets files (such as javascript and css files) to browser. I am wondering can http/2 server push be used to send dynamic payload ...
Erfert asked 21/6, 2016 at 21:14
1
golang 1.6 was released with Http2 support. I googled online but couldn't find any examples of how to do Http2 server push using Go. Is there any high level client implemented for that? Is there an...
1
Solved
We have a java web server which is able to serve content over h2c (HTTP/2 clear text)
We would like to reverse proxy connections established using h2 (i.e. standard HTTP/2 over SSL) to the java se...
Meaghan asked 15/6, 2016 at 12:27
1
Solved
I'm starting a new project and I'm trying to be forward thinking about it. I've used Browserify in the past. For my new project I would like to use either Webpack, Rollup, or SystemJS. Webpack look...
1
Solved
In HTTP/1, to avoid extra network requests that would determine if resources should remain cached, we would set a high max-age or Expires value on static assets, and give them a unique URL for each...
1
Solved
Is there a way to force PHP to make a HTTP2 connection to another server just to see if that server supports it?
I've tried:
$options = stream_context_create(array(
'http' => array(
'method'...
1
Solved
Is there a way to enable h2c aka HTTP2 cleartext in Nginx 1.9.5 onward?
I've tried using h2 over TLs in https://chronic101.xyz and it works, however I would like to implement h2c on port 80 as wel...
1
Solved
Browsers have a per-host limit regarding number of parallel XHR (about 6 nowadays).
Does this restriction apply to multiplexed HTTP/2 connections?
Docent asked 25/4, 2016 at 8:57
1
Solved
I used yum install nginx on my ECS server, but the version is not high enough to support http2. After googling around, I added a config file:
/etc/yum.repos.d/nginx.repo
With the content:
[ngin...
2
Solved
How HTTP/2 affects the implementation of a proxy server? Especially, for example, when a client sends an HTTP/2 request to a content server that only supports HTTP/1.x, should the proxy server tran...
Vagabondage asked 7/4, 2016 at 8:47
1
Solved
Our site is considering making the switch to http2.
My understanding is that http2 renders optimization techniques like file concatenation obsolete, since a server using http2 just sends one reque...
Camarata asked 23/2, 2016 at 21:36
1
Solved
I recently enabled HTTP/2 on a site I was developing.
To do this I had to
Be on Windows 10
Use a browser that supports HTTP/2 (in my case Chrome)
Configure my webserver (iisexpress) to serve th...
Clearly asked 25/3, 2016 at 16:51
1
Solved
I have made a website with HTTP/2 Protocol which is running on Apache 2.4.18 HTTP Server. Currently I have made the website is SSL Enabled because I read somewhere that HTTP/2 by default requires S...
Siliceous asked 15/3, 2016 at 7:11
2
In ASP.NET, how can I find out at runtime whether a client is connecting using HTTP 2 or not?
1
Solved
I have multiple domain (let's say abc.com and xyz.org) with diffrent certificate. Is it possible to use key and certificate based on hostname without going deep low level and net.Listen, etc. Just ...
2
Solved
Until now my php application assumed HTTP 1.1 everywhere. So I defined all headers like so:
header("HTTP/1.1 500 Internal Server Error");
But now my server also supports HTTP 2 and I want to up...
1
Solved
Why does most modern browsers require TLS for HTTP2?
Is there a technical reason behind this? Or simply just to make the web more secure?
http://caniuse.com/#feat=http2
Octastyle asked 3/12, 2015 at 21:12
© 2022 - 2024 — McMap. All rights reserved.