add cors support for static resources

This commit is contained in:
Lunny Xiao 2019-07-14 21:29:50 +08:00
parent c559a9f824
commit 42f964fd18
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
1 changed files with 4 additions and 0 deletions

View File

@ -38,6 +38,7 @@ import (
"github.com/go-macaron/binding"
"github.com/go-macaron/cache"
"github.com/go-macaron/captcha"
"github.com/go-macaron/cors"
"github.com/go-macaron/csrf"
"github.com/go-macaron/i18n"
"github.com/go-macaron/session"
@ -131,6 +132,9 @@ func NewMacaron() *macaron.Macaron {
if setting.Protocol == setting.FCGI {
m.SetURLPrefix(setting.AppSubURL)
}
if setting.EnableCORS {
m.Use(cors.CORS(setting.CORSConfig))
}
m.Use(public.Custom(
&public.Options{
SkipLogging: setting.DisableRouterLog,