Initial commit

This commit is contained in:
Matthew Holt
2019-03-26 12:00:54 -06:00
commit 859b5d7ea3
6 changed files with 360 additions and 0 deletions

View File

@ -0,0 +1,27 @@
package caddyhttp
import (
"log"
"bitbucket.org/lightcodelabs/caddy2"
)
func init() {
err := caddy2.RegisterModule(caddy2.Module{
Name: "http",
New: func() (interface{}, error) { return httpModuleConfig{}, nil },
})
if err != nil {
log.Fatal(err)
}
}
type httpModuleConfig struct {
Servers map[string]httpServerConfig `json:"servers"`
}
type httpServerConfig struct {
Listen []string `json:"listen"`
ReadTimeout string `json:"read_timeout"`
ReadHeaderTimeout string `json:"read_header_timeout"`
}