Hi, I am following this example to setup a websocket service,
https://github.com/JuliaWeb/WebSockets.jl/blob/master/examples/minimal_server.jl
This example shows how to handle a URI request like ws://...
.
However, in a https
website, using ws
protocal for websocket is considered as “unsecure”
https://stackoverflow.com/questions/26791107/wss-on-http-vs-wss-on-https
Is there any example to setup a server that accepts wss
URI?