0👍
The websocket is trying to directly connect to 8080 through nginx. You need to proxy that connection,as well.
- [Vuejs]-Vue App ID causing issues with existing page 'addEventListener'
- [Vuejs]-Vue – prerender-spa-plugin index.html content undefined
0👍
Don’t forget to change WebSocket URL when you initialise your connection:
var sock = new SockJS('https://mydomain.me');
Source:stackexchange.com