mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-23 22:27:38 -05:00
24 lines
480 B
Go
24 lines
480 B
Go
package bind
|
|
|
|
import (
|
|
"github.com/mholt/caddy"
|
|
"github.com/mholt/caddy/caddyhttp/httpserver"
|
|
)
|
|
|
|
func init() {
|
|
caddy.RegisterPlugin("bind", caddy.Plugin{
|
|
ServerType: "http",
|
|
Action: setupBind,
|
|
})
|
|
}
|
|
|
|
func setupBind(c *caddy.Controller) error {
|
|
config := httpserver.GetConfig(c.Key)
|
|
for c.Next() {
|
|
if !c.Args(&config.ListenHost) {
|
|
return c.ArgErr()
|
|
}
|
|
config.TLS.ListenHost = config.ListenHost // necessary for ACME challenges, see issue #309
|
|
}
|
|
return nil
|
|
}
|