bench-forgejo/modules/setting/cors.go

40 lines
828 B
Go
Raw Normal View History

2019-05-13 21:08:53 +05:30
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2019-05-13 21:08:53 +05:30
package setting
import (
"time"
"code.gitea.io/gitea/modules/log"
)
// CORSConfig defines CORS settings
var CORSConfig = struct {
Enabled bool
Scheme string
AllowDomain []string
AllowSubdomain bool
Methods []string
MaxAge time.Duration
AllowCredentials bool
Headers []string
XFrameOptions string
}{
Enabled: false,
MaxAge: 10 * time.Minute,
Headers: []string{"Content-Type", "User-Agent"},
XFrameOptions: "SAMEORIGIN",
}
2019-05-13 21:08:53 +05:30
func newCORSService() {
sec := Cfg.Section("cors")
if err := sec.MapTo(&CORSConfig); err != nil {
log.Fatal("Failed to map cors settings: %v", err)
2019-05-13 21:08:53 +05:30
}
if CORSConfig.Enabled {
2019-05-13 21:08:53 +05:30
log.Info("CORS Service Enabled")
}
}