Code Monkey home page Code Monkey logo

Comments (4)

rauanmayemir avatar rauanmayemir commented on June 1, 2024 1

@FZambia The description above is for serving TLS, it doesn't cover H2C. The limitation is technical and I don't have a reasonable justification, so I'll leave this as 'nice to have'.

from centrifugo.

FZambia avatar FZambia commented on June 1, 2024

Hello, Centrifugo already supports HTTP/2 out of the box.

You need to configure TLS to make it work. For example, with mkcert tool:

❯ mkcert localhost 127.0.0.1 ::1

Created a new certificate valid for the following names πŸ“œ
 - "localhost"
 - "127.0.0.1"
 - "::1"

The certificate is at "./localhost+2.pem" and the key at "./localhost+2-key.pem" βœ…

Run Centrifugo with TLS:

./centrifugo --tls --tls_cert localhost+2.pem --tls_key localhost+2-key.pem --api_insecure

Note, api_insecure is only to simplify example here.

Then check API response:

curl -X POST "https://localhost:8000/api/info" --data '{}'  -v

You will see HTTP/2 headers:

*  SSL certificate verify ok.
* using HTTP/2
* h2 [:method: POST]
* h2 [:scheme: https]
* h2 [:authority: localhost:8000]
* h2 [:path: /api/info]
* h2 [user-agent: curl/8.1.2]
* h2 [accept: */*]
* h2 [content-length: 2]
* h2 [content-type: application/x-www-form-urlencoded]
* Using Stream ID: 1 (easy handle 0x13f80c600)
> POST /api/info HTTP/2
> Host: localhost:8000
> User-Agent: curl/8.1.2
> Accept: */*
> Content-Length: 2
> Content-Type: application/x-www-form-urlencoded
>
* We are completely uploaded and fine
< HTTP/2 200
< content-type: application/json
< date: Mon, 11 Mar 2024 16:00:49 GMT

Then check admin UI:

Screenshot 2024-03-11 at 18 06 48

See also: https://centrifugal.dev/docs/faq#does-centrifugo-work-with-http2

Having said this all, I don't see the problem with HTTP 1.1, I doubt about significant practical benefits here. So supporting H2C should be justified by a practical reason.

from centrifugo.

rauanmayemir avatar rauanmayemir commented on June 1, 2024

It’s not about a benefit, but rather a limitation I had and wanted to avoid putting it behind proxy.

from centrifugo.

FZambia avatar FZambia commented on June 1, 2024

Could you please explain what kind of limitation? Does the above description solves it for you?

from centrifugo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.