MyNixOS website logo
option

services.wstunnel.clients

wstunnel clients to set up.

Declarations
Type
attribute set of (submodule)
Default
{ }
Example
{
  wg-tunnel = {
    connectTo = "wss://wstunnel.server.com:8443";
    localToRemote = [
      "tcp://1212:google.com:443"
      "tcp://2:n.lan:4?proxy_protocol"
    ];
    remoteToLocal = [
      "socks5://[::1]:1212"
      "unix://wstunnel.sock:g.com:443"
    ];
  };
}