http2 Questions

4

Solved

Is there any way to enable HTTP2 support in MAMP Pro? I want to test and improve some of my local development websites with HTTP2 support. I've been searching for a while now, but haven't found a ...
Kantar asked 16/11, 2016 at 16:2

2

Solved

The type of a value passed through a query string is always a string. When a HTTP client need to send a number, let's say 42, in is actually "42". Everything inside the query string is ac...
Haywood asked 8/12, 2015 at 9:24

1

Solved

Using the early access build for JDK/11 to compile an existing code based on Java-9 which was using a VM argument --add-modules jdk.incubator.httpclient to resolve the HTTP/2 client incubator m...
Cismontane asked 1/5, 2018 at 19:36

1

Solved

Following on from Is Port Number Required in HTTP "Host" Header Parameter?, does the same logic apply to HTTP/2? i.e. if a browser makes a request to https://server.com:1234/, should the...
Kakapo asked 26/4, 2018 at 4:21

2

Solved

HTTP/2 is released and supported by all major browsers. There are implementations shipping in major web servers like Apache and nginx. But for us Rubyists, the choices are currently quite limited,...
Pleurisy asked 16/10, 2015 at 17:44

1

Solved

I have successfully set up http2 for my virtual host but when I try to access the url via curl it looks like server refuses connection over http2 and accepts http1. Can anyone explain why it may be...
Disaccharide asked 8/3, 2018 at 9:11

2

Solved

I am aware of HTTP/2 Client provided by Java 9 and while trying out the incubator module with the following code: // Request builder URI uri = new URI("http://www.stackoverflow.com/"); // using w...
Kamerad asked 25/9, 2017 at 6:36

1

Solved

I am choosing a better web server for big SPA application with dozens of JS and css files. With HTTP/2 we are now able to not merge them into two big files (3 MB for JS), that take pretty long time...
Skardol asked 25/2, 2018 at 14:33

2

I have CENTOS7 server, with: Server version: Apache/2.4.6 (CentOS) . How can i enable/add HTTP/2 on these Apache ? I'm trying to send http2 requests from the client via Nghttp, but i get an e...
Axenic asked 21/11, 2016 at 12:53

2

Solved

My Web Server is Coded in Golang and supports HTTPS. I wish to leverage HTTP/2 Server Push features in the Web Server. The following Link explains how to convert HTTP Server to Support HTTP/2 :- h...
Roshan asked 5/1, 2017 at 16:48

4

Solved

I'm planning to upgrade my nginx to 1.9.6 which supports HTTP/2. Have nginx implemented HTTP/2 server push? ref: https://ma.ttias.be/service-side-push-http2-nghttp2/
Backstroke asked 5/11, 2015 at 5:17

1

I'm using Windows 10 Technical preview. I know it's not yet tweeked out to full usage, but here is my problem. On local IIS I'm developing my web app. It loads most of the data via ASP.NET MVC API....
Saintsimon asked 9/6, 2015 at 4:2

1

Solved

When I run: curl -I --http2 https://MYACCOUNT.blob.core.cloudapi.de/MYCONTAINER/MYPATH I get: HTTP/1.1 200 OK ... Does this mean azure blob storage doesn't support http2 at all?
Barriebarrientos asked 2/2, 2018 at 18:22

2

Solved

I have a Python REST service and I want to serve it using HTTP2. My current server setup is nginx -> Gunicorn. In other words, nginx (port 443 and 80 that redirects to port 443) is running as a ...
Description asked 10/8, 2016 at 16:25

1

Is it possible to run a Django Application using Gunicorn and HTTP2? Currently we have Nginx in front of our application working as a reverse proxy, but we may drop it in the future, since we are s...
Caithness asked 25/5, 2017 at 19:8

0

Is there any options in Spring's RestTemplate http client(or any other client) which allows to send HTTP2.0 requests?
Kure asked 26/1, 2018 at 11:58

2

Solved

Our web app that we are building is having a lot of its assets served via S3. When looking at them in Chrome they are being served via HTTP and not http/2. Is there a config setting in S3 or a hea...
Leotaleotard asked 2/8, 2017 at 21:50

2

I am trying to write a Go client to test our http/2 infrastructure. I would like to make an http request to https://mydomain.tld/somePage and expect to receive an html response, along with several ...
Drobman asked 8/5, 2017 at 16:41

1

Summary The Http/2 protocol provides the ability to multiplex multiple requests over a single connection. This allows for more efficient use of connections - see https://http2.github.io/faq/#why-is...
Cranny asked 15/12, 2017 at 10:54

0

Context: We are uploading files directly to GCS from a web-interface via AJAX calls using a parallel composite upload approach. While running tests in different scenarios we noticed that on som...
Waylon asked 7/12, 2017 at 15:39

1

Solved

Given the latest version of Node.js with experimental HTTP2 support: $ node -v v9.2.0 An HTTP2 server: var options = { key: getKey(), cert: getCert(), allowHTTP1: true } var server = http2....
Eldon asked 23/11, 2017 at 17:6

1

Solved

Is there a simple way in PHP to test if a URL supports HTTP/2? I tried checking for connection upgrade or h2 in curl_setopt($curl, CURLOPT_HEADER, true) as per HTTP/2 identification in the specs . ...
Bluefield asked 17/11, 2017 at 18:56

4

Solved

Does NodeJS 4.x or 5.x natively support the HTTP/2 protocol? I know there's http2 package but it's an external thing. Are there some plans to merge http2 support into the Node's core?
Phrase asked 17/2, 2016 at 10:26

1

I'm wondering if anyone has setup HAProxy with http2 support on the frontend and HTTP/1.1 on the backend The backend servers are currently Varnish so only support HTTP/1.1 Would http2 work in sce...
Yogurt asked 23/4, 2016 at 21:48

3

Solved

We have recently shifted from HTTP to HTTPS. As we have already moved to HTTPS, we are thinking of moving to HTTP/2 to get performance benefits. As explained above that requests between browser ...
Edmon asked 17/11, 2016 at 13:38

© 2022 - 2024 — McMap. All rights reserved.