0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00

Some godoc

This commit is contained in:
Matthew Holt 2015-03-21 11:04:08 -06:00
parent 6d869ef55b
commit cdfc67db01

View file

@ -59,13 +59,27 @@ func Default() []Config {
// is populated by parsing a config file (via the
// Load function).
type Config struct {
Host string
Port string
Root string
TLS TLSConfig
// The hostname or IP to which to bind the server
Host string
// The port to listen on
Port string
// The directory from which to serve files
Root string
// HTTPS configuration
TLS TLSConfig
// Middleware stack
Middleware map[string][]middleware.Middleware
Startup []func() error
MaxCPU int
// Functions (or methods) to execute at server start; these
// are executed before any parts of the server are configured
Startup []func() error
// MaxCPU is the maximum number of cores for the whole process to use
MaxCPU int
}
// Address returns the host:port of c as a string.