I'm using Hiawatha to forward my websocket connections to a node.js server. If I want to use secure websockets (wss), is it possible to have Hiawatha decrypt them into regular websockets (ws)? Here's an example of what my code looks like.
Binding {
Port = 80
}
VirtualHost {
Hostname =0.0.0.0
WebsiteRoot = /path/to/website
StartFile = index.html
AccessLogfile = /path/to/access.log
ErrorLogfile = /path/to/error.log
ReverseProxy .* http://172.18.1.47:3000/
WebSocket = ws://ip:3000 /websocket1 15
WebSocket = ws://ip:9002 /websocket2 15
}