mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-03 14:23:46 +08:00
34 lines
514 B
Go
34 lines
514 B
Go
|
package index
|
||
|
|
||
|
import (
|
||
|
"github.com/mholt/caddy"
|
||
|
"github.com/mholt/caddy/caddyhttp/staticfiles"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
caddy.RegisterPlugin("index", caddy.Plugin{
|
||
|
ServerType: "http",
|
||
|
Action: setupIndex,
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func setupIndex(c *caddy.Controller) error {
|
||
|
var index []string
|
||
|
|
||
|
for c.Next() {
|
||
|
args := c.RemainingArgs()
|
||
|
|
||
|
if len(args) == 0 {
|
||
|
return c.Errf("Expected at least one index")
|
||
|
}
|
||
|
|
||
|
for _, in := range args {
|
||
|
index = append(index, in)
|
||
|
}
|
||
|
|
||
|
staticfiles.IndexPages = index
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|