-
Notifications
You must be signed in to change notification settings - Fork 10.1k
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
Support for unix sockets #5097
Comments
Have you switched to a different library since posting this? |
Who? Me? |
Yes @jheusala - just wondering if you solved this problem somehow or dropped it. |
No, I haven't solved it. I recall I just used normal HTTP network as a workaround. I would indeed use UNIX sockets if it were possible, and AFAIK there is no reason why it couldn't work. Unix sockets give better security since you can use simple file system permissions to control who has access to the service. |
@darrachequesne do you think it's worth to have a fix for this? I can work on this. |
Websockets has a support for unix sockets with a url like
ws+unix:///path/to/file
, but Socket.io doesn't seem to support it.The server:
...and client:
...but client doesn't connect...
The text was updated successfully, but these errors were encountered: