2019-05-13 15:38:53 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package setting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
)
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
// CORSConfig defines CORS settings
|
|
|
|
var CORSConfig = struct {
|
|
|
|
Enabled bool
|
|
|
|
Scheme string
|
|
|
|
AllowDomain []string
|
|
|
|
AllowSubdomain bool
|
|
|
|
Methods []string
|
|
|
|
MaxAge time.Duration
|
|
|
|
AllowCredentials bool
|
|
|
|
XFrameOptions string
|
|
|
|
}{
|
|
|
|
Enabled: false,
|
|
|
|
MaxAge: 10 * time.Minute,
|
|
|
|
XFrameOptions: "SAMEORIGIN",
|
|
|
|
}
|
2019-05-13 15:38:53 +00:00
|
|
|
|
|
|
|
func newCORSService() {
|
|
|
|
sec := Cfg.Section("cors")
|
2020-01-29 07:47:46 +00:00
|
|
|
if err := sec.MapTo(&CORSConfig); err != nil {
|
|
|
|
log.Fatal("Failed to map cors settings: %v", err)
|
2019-05-13 15:38:53 +00:00
|
|
|
}
|
|
|
|
|
2020-01-29 07:47:46 +00:00
|
|
|
if CORSConfig.Enabled {
|
2019-05-13 15:38:53 +00:00
|
|
|
log.Info("CORS Service Enabled")
|
|
|
|
}
|
|
|
|
}
|