mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-26 02:09:47 +08:00
a56a833423
* caddyhttp: Allow to alternate Index * Move Index directive * Fix misspelling outside this PR
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
|
|
}
|