caddy/config/config.go

123 lines
2.6 KiB
Go
Raw Normal View History

2015-01-14 03:43:45 +08:00
// Package config contains utilities and types necessary for
// launching specially-configured server instances.
package config
import (
"log"
2015-04-16 04:11:32 +08:00
"net"
"os"
"github.com/mholt/caddy/middleware"
)
const (
defaultHost = "localhost"
2015-04-26 04:28:56 +08:00
defaultPort = "2015"
defaultRoot = "."
2015-04-16 04:11:32 +08:00
// The default configuration file to load if none is specified
DefaultConfigFile = "Caddyfile"
)
2015-01-14 03:43:45 +08:00
2015-03-26 23:52:03 +08:00
// config represents a server configuration. It
// is populated by parsing a config file (via the
// Load function).
type Config struct {
2015-04-16 04:11:32 +08:00
// The hostname or IP on which to serve
2015-03-26 23:52:03 +08:00
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
// Functions (or methods) to execute at server start; these
// are executed before any parts of the server are configured,
// and the functions are blocking
Startup []func() error
// Functions (or methods) to execute when the server quits;
// these are executed in response to SIGINT and are blocking
Shutdown []func() error
// The path to the configuration file from which this was loaded
ConfigFile string
2015-03-26 23:52:03 +08:00
}
// Address returns the host:port of c as a string.
func (c Config) Address() string {
2015-04-16 04:11:32 +08:00
return net.JoinHostPort(c.Host, c.Port)
2015-03-26 23:52:03 +08:00
}
// TLSConfig describes how TLS should be configured and used,
// if at all. A certificate and key are both required.
type TLSConfig struct {
Enabled bool
Certificate string
Key string
}
2015-01-14 03:43:45 +08:00
// Load loads a configuration file, parses it,
// and returns a slice of Config structs which
// can be used to create and configure server
// instances.
func Load(filename string) ([]Config, error) {
file, err := os.Open(filename)
2015-01-14 03:43:45 +08:00
if err != nil {
return nil, err
}
defer file.Close()
// turn off timestamp for parsing
flags := log.Flags()
log.SetFlags(0)
p, err := newParser(file)
if err != nil {
return nil, err
}
cfgs, err := p.parse()
if err != nil {
return []Config{}, err
}
for i := 0; i < len(cfgs); i++ {
cfgs[i].ConfigFile = filename
}
// restore logging settings
log.SetFlags(flags)
return cfgs, nil
2015-01-14 03:43:45 +08:00
}
// IsNotFound returns whether or not the error is
// one which indicates that the configuration file
// was not found. (Useful for checking the error
// returned from Load).
func IsNotFound(err error) bool {
return os.IsNotExist(err)
}
// Default makes a default configuration
// that's empty except for root, host, and port,
// which are essential for serving the cwd.
func Default() []Config {
cfg := []Config{
Config{
Root: defaultRoot,
Host: defaultHost,
Port: defaultPort,
},
}
return cfg
}