[Vuejs]-Vue with nginx issue

0👍

The websocket is trying to directly connect to 8080 through nginx. You need to proxy that connection,as well.

0👍

Don’t forget to change WebSocket URL when you initialise your connection:

var sock = new SockJS('https://mydomain.me');

Leave a comment