services.tailscale.serve.services

Services to configure for Tailscale Serve.

Each attribute name should be the service name (without the svc: prefix). The svc: prefix will be added automatically.

See https://tailscale.com/kb/1589/tailscale-services-configuration-file for details.

Type
attribute set of (submodule)
Default
{ }
Example
{
  web-server = {
    endpoints = {
      "tcp:443" = "https://localhost:443";
    };
  };
  api = {
    endpoints = {
      "tcp:8080" = "http://localhost:8080";
    };
    advertised = true;
  };
}
Declared
<nixpkgs/nixos/modules/services/networking/tailscale-serve.nix>