Objective
I'd like to create a PowerShell-based web server, using the well-supported Pode module.
However, I would like to specifically test the QUIC protocol that is optional with HTTP/2 and required by HTTP/3. The Add-PodeEndpoint
command doesn't seem to have an option to specify HTTP/2-over-QUIC or HTTP/3 protocols.
The only values that are exposed by the -Protocol
parameter on Add-PodeEndpoint
are:
- Http
- Https
- Smtp
- Tcp
- Ws
- Wss
Question: How can I use HTTP/3 or HTTP/2-over-QUIC protocols with the PowerShell Pode module?