2015-01-14 03:43:45 +08:00
|
|
|
package config
|
|
|
|
|
2015-01-19 14:11:21 +08:00
|
|
|
import (
|
2015-05-21 14:06:53 +08:00
|
|
|
"fmt"
|
2015-05-04 20:53:54 +08:00
|
|
|
"io"
|
2015-04-16 13:17:56 +08:00
|
|
|
"log"
|
2015-05-21 14:06:53 +08:00
|
|
|
"net"
|
2015-01-19 14:11:21 +08:00
|
|
|
|
2015-05-21 14:06:53 +08:00
|
|
|
"github.com/mholt/caddy/app"
|
2015-05-04 20:53:54 +08:00
|
|
|
"github.com/mholt/caddy/config/parse"
|
|
|
|
"github.com/mholt/caddy/config/setup"
|
2015-01-19 14:11:21 +08:00
|
|
|
"github.com/mholt/caddy/middleware"
|
2015-05-04 20:53:54 +08:00
|
|
|
"github.com/mholt/caddy/server"
|
2015-01-19 14:11:21 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-04-30 12:30:03 +08:00
|
|
|
DefaultHost = "0.0.0.0"
|
2015-04-29 12:13:00 +08:00
|
|
|
DefaultPort = "2015"
|
|
|
|
DefaultRoot = "."
|
2015-04-16 04:11:32 +08:00
|
|
|
|
2015-05-25 10:52:34 +08:00
|
|
|
// DefaultConfigFile is the name of the configuration file that is loaded
|
|
|
|
// by default if no other file is specified.
|
2015-04-16 04:11:32 +08:00
|
|
|
DefaultConfigFile = "Caddyfile"
|
2015-01-19 14:11:21 +08:00
|
|
|
)
|
2015-01-14 03:43:45 +08:00
|
|
|
|
2015-05-04 20:53:54 +08:00
|
|
|
func Load(filename string, input io.Reader) ([]server.Config, error) {
|
|
|
|
var configs []server.Config
|
2015-01-22 04:19:25 +08:00
|
|
|
|
2015-04-16 13:17:56 +08:00
|
|
|
// turn off timestamp for parsing
|
|
|
|
flags := log.Flags()
|
|
|
|
log.SetFlags(0)
|
|
|
|
|
2015-05-04 20:53:54 +08:00
|
|
|
serverBlocks, err := parse.ServerBlocks(filename, input)
|
2015-01-22 04:19:25 +08:00
|
|
|
if err != nil {
|
2015-05-04 20:53:54 +08:00
|
|
|
return configs, err
|
2015-01-22 04:19:25 +08:00
|
|
|
}
|
|
|
|
|
2015-05-04 20:53:54 +08:00
|
|
|
// Each server block represents a single server/address.
|
|
|
|
// Iterate each server block and make a config for each one,
|
|
|
|
// executing the directives that were parsed.
|
|
|
|
for _, sb := range serverBlocks {
|
|
|
|
config := server.Config{
|
|
|
|
Host: sb.Host,
|
|
|
|
Port: sb.Port,
|
2015-05-06 05:48:40 +08:00
|
|
|
Root: Root,
|
2015-05-04 20:53:54 +08:00
|
|
|
Middleware: make(map[string][]middleware.Middleware),
|
2015-05-05 06:23:16 +08:00
|
|
|
ConfigFile: filename,
|
2015-05-21 14:06:53 +08:00
|
|
|
AppName: app.Name,
|
|
|
|
AppVersion: app.Version,
|
2015-05-04 20:53:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// It is crucial that directives are executed in the proper order.
|
|
|
|
for _, dir := range directiveOrder {
|
|
|
|
// Execute directive if it is in the server block
|
|
|
|
if tokens, ok := sb.Tokens[dir.name]; ok {
|
|
|
|
// Each setup function gets a controller, which is the
|
|
|
|
// server config and the dispenser containing only
|
|
|
|
// this directive's tokens.
|
|
|
|
controller := &setup.Controller{
|
|
|
|
Config: &config,
|
|
|
|
Dispenser: parse.NewDispenserTokens(filename, tokens),
|
|
|
|
}
|
|
|
|
|
|
|
|
midware, err := dir.setup(controller)
|
|
|
|
if err != nil {
|
|
|
|
return configs, err
|
|
|
|
}
|
|
|
|
if midware != nil {
|
|
|
|
// TODO: For now, we only support the default path scope /
|
|
|
|
config.Middleware["/"] = append(config.Middleware["/"], midware)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.Port == "" {
|
|
|
|
config.Port = Port
|
|
|
|
}
|
|
|
|
|
|
|
|
configs = append(configs, config)
|
2015-04-13 07:44:02 +08:00
|
|
|
}
|
|
|
|
|
2015-04-16 13:17:56 +08:00
|
|
|
// restore logging settings
|
|
|
|
log.SetFlags(flags)
|
|
|
|
|
2015-05-04 20:53:54 +08:00
|
|
|
return configs, nil
|
2015-01-14 03:43:45 +08:00
|
|
|
}
|
|
|
|
|
2015-05-21 14:06:53 +08:00
|
|
|
// ArrangeBindings groups configurations by their bind address. For example,
|
|
|
|
// a server that should listen on localhost and another on 127.0.0.1 will
|
|
|
|
// be grouped into the same address: 127.0.0.1. It will return an error
|
2015-06-24 12:00:55 +08:00
|
|
|
// if an address is malformed or a TLS listener is configured on the
|
2015-05-21 14:06:53 +08:00
|
|
|
// same address as a plaintext HTTP listener. The return value is a map of
|
|
|
|
// bind address to list of configs that would become VirtualHosts on that
|
2015-06-24 12:00:55 +08:00
|
|
|
// server. Use the keys of the returned map to create listeners, and use
|
|
|
|
// the associated values to set up the virtualhosts.
|
2015-05-21 14:06:53 +08:00
|
|
|
func ArrangeBindings(allConfigs []server.Config) (map[*net.TCPAddr][]server.Config, error) {
|
|
|
|
addresses := make(map[*net.TCPAddr][]server.Config)
|
|
|
|
|
|
|
|
// Group configs by bind address
|
|
|
|
for _, conf := range allConfigs {
|
2015-06-24 12:00:55 +08:00
|
|
|
newAddr, warnErr, fatalErr := resolveAddr(conf)
|
|
|
|
if fatalErr != nil {
|
|
|
|
return addresses, fatalErr
|
|
|
|
}
|
|
|
|
if warnErr != nil {
|
|
|
|
log.Println("[Warning]", warnErr)
|
2015-05-21 14:06:53 +08:00
|
|
|
}
|
2015-05-21 14:40:05 +08:00
|
|
|
|
|
|
|
// Make sure to compare the string representation of the address,
|
|
|
|
// not the pointer, since a new *TCPAddr is created each time.
|
|
|
|
var existing bool
|
|
|
|
for addr := range addresses {
|
|
|
|
if addr.String() == newAddr.String() {
|
|
|
|
addresses[addr] = append(addresses[addr], conf)
|
|
|
|
existing = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !existing {
|
|
|
|
addresses[newAddr] = append(addresses[newAddr], conf)
|
|
|
|
}
|
2015-05-21 14:06:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Don't allow HTTP and HTTPS to be served on the same address
|
|
|
|
for _, configs := range addresses {
|
|
|
|
isTLS := configs[0].TLS.Enabled
|
|
|
|
for _, config := range configs {
|
|
|
|
if config.TLS.Enabled != isTLS {
|
|
|
|
thisConfigProto, otherConfigProto := "HTTP", "HTTP"
|
|
|
|
if config.TLS.Enabled {
|
|
|
|
thisConfigProto = "HTTPS"
|
|
|
|
}
|
|
|
|
if configs[0].TLS.Enabled {
|
|
|
|
otherConfigProto = "HTTPS"
|
|
|
|
}
|
2015-06-08 08:49:17 +08:00
|
|
|
return addresses, fmt.Errorf("configuration error: Cannot multiplex %s (%s) and %s (%s) on same address",
|
2015-05-21 14:06:53 +08:00
|
|
|
configs[0].Address(), otherConfigProto, config.Address(), thisConfigProto)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return addresses, nil
|
|
|
|
}
|
|
|
|
|
2015-06-24 12:00:55 +08:00
|
|
|
// resolveAddr determines the address (host and port) that a config will
|
|
|
|
// bind to. The returned address, resolvAddr, should be used to bind the
|
|
|
|
// listener or group the config with other configs using the same address.
|
|
|
|
// The first error, if not nil, is just a warning and should be reported
|
|
|
|
// but execution may continue. The second error, if not nil, is a real
|
|
|
|
// problem and the server should not be started.
|
|
|
|
//
|
|
|
|
// This function handles edge cases gracefully. If a port name like
|
|
|
|
// "http" or "https" is unknown to the system, this function will
|
|
|
|
// change them to 80 or 443 respectively. If a hostname fails to
|
|
|
|
// resolve, that host can still be served but will be listening on
|
|
|
|
// the wildcard host instead. This function takes care of this for you.
|
|
|
|
func resolveAddr(conf server.Config) (resolvAddr *net.TCPAddr, warnErr error, fatalErr error) {
|
|
|
|
// The host to bind to may be different from the (virtual)host to serve
|
|
|
|
bindHost := conf.BindHost
|
|
|
|
if bindHost == "" {
|
|
|
|
bindHost = conf.Host
|
|
|
|
}
|
|
|
|
|
|
|
|
resolvAddr, warnErr = net.ResolveTCPAddr("tcp", net.JoinHostPort(bindHost, conf.Port))
|
|
|
|
if warnErr != nil {
|
|
|
|
// Most likely the host lookup failed or the port is unknown
|
|
|
|
tryPort := conf.Port
|
|
|
|
|
|
|
|
switch errVal := warnErr.(type) {
|
|
|
|
case *net.AddrError:
|
|
|
|
if errVal.Err == "unknown port" {
|
|
|
|
// some odd Linux machines don't support these port names; see issue #136
|
|
|
|
switch conf.Port {
|
|
|
|
case "http":
|
|
|
|
tryPort = "80"
|
|
|
|
case "https":
|
|
|
|
tryPort = "443"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
resolvAddr, fatalErr = net.ResolveTCPAddr("tcp", net.JoinHostPort(bindHost, tryPort))
|
|
|
|
if fatalErr != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
// the hostname probably couldn't be resolved, just bind to wildcard then
|
|
|
|
resolvAddr, fatalErr = net.ResolveTCPAddr("tcp", net.JoinHostPort("0.0.0.0", tryPort))
|
|
|
|
if fatalErr != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-05-04 20:53:54 +08:00
|
|
|
// validDirective returns true if d is a valid
|
|
|
|
// directive; false otherwise.
|
|
|
|
func validDirective(d string) bool {
|
|
|
|
for _, dir := range directiveOrder {
|
|
|
|
if dir.name == d {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
2015-01-14 03:43:45 +08:00
|
|
|
}
|
|
|
|
|
2015-05-04 20:53:54 +08:00
|
|
|
// Default makes a default configuration which
|
|
|
|
// is empty except for root, host, and port,
|
|
|
|
// which are essentials for serving the cwd.
|
|
|
|
func Default() server.Config {
|
|
|
|
return server.Config{
|
|
|
|
Root: Root,
|
|
|
|
Host: Host,
|
|
|
|
Port: Port,
|
2015-01-14 03:43:45 +08:00
|
|
|
}
|
|
|
|
}
|
2015-05-05 06:23:16 +08:00
|
|
|
|
|
|
|
// These three defaults are configurable through the command line
|
|
|
|
var (
|
|
|
|
Root = DefaultRoot
|
|
|
|
Host = DefaultHost
|
|
|
|
Port = DefaultPort
|
|
|
|
)
|