aboutsummaryrefslogtreecommitdiff
path: root/plugin/bind/bind.go
blob: c4a1306db335289156d3d43c5074bb310bd515ad (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/mholt/caddy"

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