SSL Support #25
Labels
No labels
bug
confirmed
critical
discussion
documentation
Doing
enhancement
suggestion
support
To Do
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: hazaar/hazaar-warlock#25
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I'm not sure how far I'm going to get with this one, but I may need to support SSL and Secure WebSockets (WSS).
Basically, if the main application is running HTTPS then ws:// connections are disallowed, meaning for Warlock to work with HTTPS enabled applications, we need to support WSS connections.
There's a few things that need to be supported here:
changed the description
Looks like I might be able to get the web server itself to support WSS and just redirect to Warlock.
Read: https://stackoverflow.com/questions/38838567/proxy-websocket-wss-to-ws-apache
This is all sorted. The WebSocket client now supports a
useSSL
flag. This is configured by the helper based on the warlock configuration.The above config will turn on SSL and the client will connect with
wss://
. This, along with reverse proxy redirect alias on the web server allows SSL connections to be forwarded to Warlock.closed