Rafaël Naciri

Results 25 comments of Rafaël Naciri

no cause this wasn't made to run on windows out of the box. try it on Linux

It's really easy and there are plenty of articles on it online: https://www.exratione.com/2013/06/websockets-over-ssl-with-nodejs-and-nginx/

this is what I have for a hc fork ``` server { listen 80; server_name not.yourbusin.ess; rewrite ^ https://$http_host$request_uri? permanent; } server{ listen 443; ssl on; server_name not.yourbusin.ess; fastcgi_param HTTPS...

did you copy over this part ``` server { listen 80; server_name not.yourbusin.ess; rewrite ^ https://$http_host$request_uri? permanent; } ``` that's the part that makes the redirect also the content of...

well on HC it's /chat-ws but on my nginx file it's /chatws that may be why you're struggling

@newdayhost See this for the error https://github.com/AndrewBelt/hack.chat/issues/136

Because the path is different on my config. It should be /chat-ws

when you downgrade a dependency, you should remove its folder from node_modules or delete the whole node_modules folder and start npm install again

you didn't modify the code?

Weird you shouldn't have had to do that but great.