mirror of
https://github.com/caddyserver/caddy.git
synced 2025-11-10 10:11:17 +00:00
Created basic fastcgi middleware layer
This commit is contained in:
parent
fe1978c6f5
commit
a38a2a0e4f
4 changed files with 129 additions and 5 deletions
|
|
@ -17,6 +17,7 @@ func init() {
|
|||
register("rewrite", Rewrite)
|
||||
register("redir", Redirect)
|
||||
register("ext", Extensionless)
|
||||
register("fastcgi", FastCGI)
|
||||
}
|
||||
|
||||
type (
|
||||
|
|
@ -37,7 +38,7 @@ type (
|
|||
NextLine() bool
|
||||
NextBlock() bool
|
||||
Val() string
|
||||
Args(...*string)
|
||||
Args(...*string) bool
|
||||
ArgErr() Middleware
|
||||
Err(string) Middleware
|
||||
Startup(func() error)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue