mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-31 02:27:19 -04:00 
			
		
		
		
	Fixes bug introduced in 0ac8bf5 - Also note that setup functions no longer have access to server port. Will need to fix later.
		
			
				
	
	
		
			111 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package setup
 | |
| 
 | |
| import (
 | |
| 	"errors"
 | |
| 	"net/http"
 | |
| 	"path/filepath"
 | |
| 
 | |
| 	"github.com/mholt/caddy/middleware"
 | |
| 	"github.com/mholt/caddy/middleware/fastcgi"
 | |
| )
 | |
| 
 | |
| // FastCGI configures a new FastCGI middleware instance.
 | |
| func FastCGI(c *Controller) (middleware.Middleware, error) {
 | |
| 	absRoot, err := filepath.Abs(c.Root)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	rules, err := fastcgiParse(c)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	return func(next middleware.Handler) middleware.Handler {
 | |
| 		return fastcgi.Handler{
 | |
| 			Next:            next,
 | |
| 			Rules:           rules,
 | |
| 			Root:            c.Root,
 | |
| 			AbsRoot:         absRoot,
 | |
| 			FileSys:         http.Dir(c.Root),
 | |
| 			SoftwareName:    c.AppName,
 | |
| 			SoftwareVersion: c.AppVersion,
 | |
| 			ServerName:      c.Host,
 | |
| 			ServerPort:      c.Port, // BUG: This is not known until the server blocks are split up...
 | |
| 		}
 | |
| 	}, nil
 | |
| }
 | |
| 
 | |
| func fastcgiParse(c *Controller) ([]fastcgi.Rule, error) {
 | |
| 	var rules []fastcgi.Rule
 | |
| 
 | |
| 	for c.Next() {
 | |
| 		var rule fastcgi.Rule
 | |
| 
 | |
| 		args := c.RemainingArgs()
 | |
| 
 | |
| 		switch len(args) {
 | |
| 		case 0:
 | |
| 			return rules, c.ArgErr()
 | |
| 		case 1:
 | |
| 			rule.Path = "/"
 | |
| 			rule.Address = args[0]
 | |
| 		case 2:
 | |
| 			rule.Path = args[0]
 | |
| 			rule.Address = args[1]
 | |
| 		case 3:
 | |
| 			rule.Path = args[0]
 | |
| 			rule.Address = args[1]
 | |
| 			err := fastcgiPreset(args[2], &rule)
 | |
| 			if err != nil {
 | |
| 				return rules, c.Err("Invalid fastcgi rule preset '" + args[2] + "'")
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		for c.NextBlock() {
 | |
| 			switch c.Val() {
 | |
| 			case "ext":
 | |
| 				if !c.NextArg() {
 | |
| 					return rules, c.ArgErr()
 | |
| 				}
 | |
| 				rule.Ext = c.Val()
 | |
| 			case "split":
 | |
| 				if !c.NextArg() {
 | |
| 					return rules, c.ArgErr()
 | |
| 				}
 | |
| 				rule.SplitPath = c.Val()
 | |
| 			case "index":
 | |
| 				args := c.RemainingArgs()
 | |
| 				if len(args) == 0 {
 | |
| 					return rules, c.ArgErr()
 | |
| 				}
 | |
| 				rule.IndexFiles = args
 | |
| 			case "env":
 | |
| 				envArgs := c.RemainingArgs()
 | |
| 				if len(envArgs) < 2 {
 | |
| 					return rules, c.ArgErr()
 | |
| 				}
 | |
| 				rule.EnvVars = append(rule.EnvVars, [2]string{envArgs[0], envArgs[1]})
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		rules = append(rules, rule)
 | |
| 	}
 | |
| 
 | |
| 	return rules, nil
 | |
| }
 | |
| 
 | |
| // fastcgiPreset configures rule according to name. It returns an error if
 | |
| // name is not a recognized preset name.
 | |
| func fastcgiPreset(name string, rule *fastcgi.Rule) error {
 | |
| 	switch name {
 | |
| 	case "php":
 | |
| 		rule.Ext = ".php"
 | |
| 		rule.SplitPath = ".php"
 | |
| 		rule.IndexFiles = []string{"index.php"}
 | |
| 	default:
 | |
| 		return errors.New(name + " is not a valid preset name")
 | |
| 	}
 | |
| 	return nil
 | |
| }
 |