Feature request: Instead of only asking for webserver port, you should ask for host.
This would help for those of us doing https through a reverse proxy. As it stands right now, I have to put a bunch of regex "search and replace" filters in my nginx configuration (See the link in my signature... I have done this and it does work!)
i.e. default would be
http://ip.address:5000
but I'd like to make it
https://my_dynamic_hostname/path
At the very least, I see the ws_main.js tries to determine the browser's hostname and substitute http for ws here:
websocket = new WebSocket('http://HOST
ORT'.toString().replace("http", "ws"));
I need the 'ws' to actually be 'wss' (web socket secure) for it to work properly... so maybe if the URL I specify starts with https instead of http, you could make that 'wss' instead of 'ws'.
Another option: Put ws_main.js on the filesystem like you do the .css so I can edit it
.