Skip to content

Commit

Permalink
add config option for control URL
Browse files Browse the repository at this point in the history
Closes #22

Co-authored-by: ChibangLW <ich@leonlenzen.de>
Signed-off-by: Will Norris <will@tailscale.com>
  • Loading branch information
willnorris and ChibangLW committed May 8, 2024
1 parent 27fad94 commit 53295fe
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
11 changes: 11 additions & 0 deletions app.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ type TSApp struct {
// DefaultAuthKey is the default auth key to use for Tailscale if no other auth key is specified.
DefaultAuthKey string `json:"auth_key,omitempty" caddy:"namespace=tailscale.auth_key"`

// ControlURL specifies the default control URL to use for nodes.
ControlURL string `json:"control_url,omitempty" caddy:"namespace=tailscale.control_url"`

// Ephemeral specifies whether Tailscale nodes should be registered as ephemeral.
Ephemeral bool `json:"ephemeral,omitempty" caddy:"namespace=tailscale.ephemeral"`

Expand All @@ -38,6 +41,9 @@ type TSNode struct {
// AuthKey is the Tailscale auth key used to register the node.
AuthKey string `json:"auth_key,omitempty" caddy:"namespace=auth_key"`

// ControlURL specifies the control URL to use for the node.
ControlURL string `json:"control_url,omitempty" caddy:"namespace=tailscale.control_url"`

// Ephemeral specifies whether the node should be registered as ephemeral.
Ephemeral bool `json:"ephemeral,omitempty" caddy:"namespace=tailscale.ephemeral"`

Expand Down Expand Up @@ -119,6 +125,11 @@ func parseTSNode(d *caddyfile.Dispenser) (TSNode, error) {
return node, segment.ArgErr()
}
node.AuthKey = segment.Val()
case "control_url":
if !segment.NextArg() {
return node, segment.ArgErr()
}
node.ControlURL = segment.Val()
case "ephemeral":
node.Ephemeral = true
default:
Expand Down
16 changes: 16 additions & 0 deletions module.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ func getNode(ctx caddy.Context, name string) (*tailscaleNode, error) {
if s.AuthKey, err = getAuthKey(name, app); err != nil {
app.logger.Warn("error parsing auth key", zap.Error(err))
}
if s.ControlURL, err = getControlURL(name, app); err != nil {
app.logger.Warn("error parsing control URL", zap.Error(err))
}

if name != "" {
// Set config directory for tsnet. By default, tsnet will use the name of the
Expand Down Expand Up @@ -168,6 +171,19 @@ func getAuthKey(name string, app *TSApp) (string, error) {
return os.Getenv("TS_AUTHKEY"), nil
}

func getControlURL(name string, app *TSApp) (string, error) {
if app == nil {
return "", nil
}
if node, ok := app.Nodes[name]; ok {
if node.ControlURL != "" {
return repl.ReplaceOrErr(node.ControlURL, true, true)
}
}

return repl.ReplaceOrErr(app.ControlURL, true, true)
}

func getEphemeral(name string, app *TSApp) bool {
if app == nil {
return false
Expand Down

0 comments on commit 53295fe

Please sign in to comment.