java - Apache websocket reverse proxy -
i have implemented apache websocket api in project, working fine on local. on http , https, when moved project upper environment don't use ip address of machines directly instead refer them using url. earlier used open websocket connection follows websocket = new websocket("ws://myapp(ip)/endpointname"); or websocket = new websocket("wss://myapp(ip)/endpointname");
but after moving on other evironments it's not working anymore there might part of reverse proxy (i dont know apache server sertup). have included ws_tunneling module web socket reverse proxy work. still not able find proper solution.
what want is, should able open web socket using websocket = new websocket("wss://myapp.com/endpointname");
have tried following links ws_tunneling , ws_tunneling
please let me know
Comments
Post a Comment