OpenSlides / openslides-manage-service

Manage service for OpenSlides 4+
MIT License
4 stars 12 forks source link

Support http3 #217

Open ostcar opened 1 year ago

ostcar commented 1 year ago

Http3 uses udp instead of tcp. udp and tcp uses different ports. So the udp port 8000 has nothing to do with the tcp port 8000.

To use udp in docker, the udp port has also to be opened.

For example:

    ports:
      - 0.0.0.0:8000:8000
      - 0.0.0.0:8000:8000/udp

Currently, OpenSlides does not support http3. But I hope, with https://github.com/OpenSlides/OpenSlides/pull/6553, http3 will be supported. Please change the creation of the docker-compose file, so it also opens the udp port

ostcar commented 1 year ago

See https://github.com/OpenSlides/OpenSlides/pull/6558