Replies: 1 comment
-
|
This is now implemented |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Issue #482 requests support for UNIX sockets. This makes a lot of sense as sslh commonly lives on the same server as the target server, so saving network overhead is easy.
I am planning to do this in three steps:
is_unix: truesetting for protocol entries, which then interprets thehostentry as the socket file name. E.g.:{ name: "http"; is_unix: true; host: "/tmp/ssl_sock"; },target_urisetting, which would allow to set all other settings in one string, e.g. "tcp://10.0.0.2:443", "udp://other_host:dns", and based on Nginx' syntax:http://unix:/tmp/mysock.sock. This would auto-fillhost,port,is_udpandis_unixsettings. I am not sure this is a good idea yet, and am open for feedback :-)Beta Was this translation helpful? Give feedback.
All reactions