caddy/caddyhttp/index/index.go
elcore a56a833423 caddyhttp: New index directive for alternate index file names (#1567)
* caddyhttp: Allow to alternate Index

* Move Index directive

* Fix misspelling outside this PR
2017-04-17 11:02:44 -06:00

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
}