yatwiki/ServerOptions.go
2017-07-09 17:20:21 +12:00

36 lines
820 B
Go

package yatwiki3
import (
"time"
)
type ServerOptions struct {
PageTitle string
ExpectBaseURL string
DefaultPage string
Timezone string
DateFormat string
DBFilePath string
FaviconFilePath string
AllowDBDownload bool
RecentChanges int
GzipCompressionLevel int
BannedUserIPRegexes []string
}
func DefaultOptions() *ServerOptions {
return &ServerOptions{
PageTitle: "YATWiki",
ExpectBaseURL: "/",
DefaultPage: "home",
Timezone: "UTC",
DateFormat: time.RFC3339,
DBFilePath: "wiki.db",
FaviconFilePath: "", // no favicon
AllowDBDownload: true,
RecentChanges: 20,
GzipCompressionLevel: 9,
BannedUserIPRegexes: make([]string, 0),
}
}