-
Notifications
You must be signed in to change notification settings - Fork 447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accessing Tracking Data from Another Computer #203
Comments
You probably just have your firewall settings blocking that port.
|
Yes, this is possible. Firstly, the code base is almost entirely shared between Node and Web, so passing in the host option should be just the same. To fix the In a nutshell, non-localhost access is by default forbidden, but this can be configured on a per-machine basis. Also, SSH tunneling is an alternative. |
@capnmidnight The webserver is actually configured specifically to accept connections only from localhost. I'm not exactly sure how I would design a sufficiently secure authentication scheme to serve user input content over the general internet. |
For others stumbling to this place two years later... I had to do a few things:
|
Is there a way that a Node server running leapjs on another computer can connect via websocket to the host computer running leapd on port 6437? i.e. this browser function:
Of course on browser this didn't work and got net::ERR_CONNECTION_REFUSED, but is it possible to get the data from another node server? (I noticed in the node.js example there's no way to supply the host argument)
The text was updated successfully, but these errors were encountered: