Allow custom public files (#782)
* Allow custom public files * Gofmt code, lots of places not related to this pr
This commit is contained in:
parent
cc31a21192
commit
78535fb08e
7 changed files with 26 additions and 6 deletions
|
@ -88,6 +88,11 @@ func newMacaron() *macaron.Macaron {
|
|||
if setting.Protocol == setting.FCGI {
|
||||
m.SetURLPrefix(setting.AppSubURL)
|
||||
}
|
||||
m.Use(public.Custom(
|
||||
&public.Options{
|
||||
SkipLogging: setting.DisableRouterLog,
|
||||
},
|
||||
))
|
||||
m.Use(public.Static(
|
||||
&public.Options{
|
||||
Directory: path.Join(setting.StaticRootPath, "public"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue