yatwiki/ServerOptions.go

44 lines
1.1 KiB
Go
Raw Normal View History

2017-07-08 23:13:36 +00:00
package yatwiki3
import (
"time"
)
type ServerOptions struct {
PageTitle string
ExpectBaseURL string
DefaultPage string
Timezone string
DateFormat string
DBFilePath string
2017-07-09 00:14:28 +00:00
FaviconFilePath string
2017-07-08 23:13:36 +00:00
AllowDBDownload bool
RecentChanges int
2017-07-11 07:08:22 +00:00
RecentChangesRSS int
2017-07-08 23:13:36 +00:00
GzipCompressionLevel int
BannedUserIPRegexes []string
2017-07-11 07:08:22 +00:00
ExternalBaseURL string
DeclareRSSLanguage string
DeclareRSSEmail string
2017-07-08 23:13:36 +00:00
}
func DefaultOptions() *ServerOptions {
return &ServerOptions{
PageTitle: "YATWiki",
ExpectBaseURL: "/",
DefaultPage: "home",
Timezone: "UTC",
2017-07-09 05:20:21 +00:00
DateFormat: time.RFC3339,
2017-07-08 23:13:36 +00:00
DBFilePath: "wiki.db",
2017-07-09 00:14:28 +00:00
FaviconFilePath: "", // no favicon
2017-07-08 23:13:36 +00:00
AllowDBDownload: true,
RecentChanges: 20,
2017-07-11 07:08:22 +00:00
RecentChangesRSS: 10,
2017-07-08 23:13:36 +00:00
GzipCompressionLevel: 9,
BannedUserIPRegexes: make([]string, 0),
ExternalBaseURL: "http://127.0.0.1/",
2017-07-11 07:08:22 +00:00
DeclareRSSLanguage: "en-GB",
DeclareRSSEmail: `nobody@example.com`,
2017-07-08 23:13:36 +00:00
}
}