aboutsummaryrefslogtreecommitdiff
path: root/plugin/bind/bind.go
blob: 749561a3616358b328dacf16caf96088a61490f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Package bind allows binding to a specific interface instead of bind to all of them.
package bind

import "github.com/caddyserver/caddy"

func init() {
	caddy.RegisterPlugin("bind", caddy.Plugin{
		ServerType: "dns",
		Action:     setup,
	})
}