Skip to content
eivindga edited this page Dec 19, 2015 · 1 revision

What ports must be open on the server?

In addition to the web-server port that must be available (default 8080), these two additional ports must be open:

  • 3500
  • 1905

How to run behind a reverse nginx-proxy?

Add this to your site config for supporting websocket connections through nginx.

proxy_http_version 1.1;

proxy_set_header Upgrade $http_upgrade;

proxy_set_header Connection "upgrade";

Clone this wiki locally