2019-05-13 21:08:53 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-13 21:08:53 +05:30
|
|
|
|
|
|
|
package setting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
)
|
|
|
|
|
2022-01-20 23:16:10 +05:30
|
|
|
// CORSConfig defines CORS settings
|
|
|
|
var CORSConfig = struct {
|
|
|
|
Enabled bool
|
|
|
|
Scheme string
|
|
|
|
AllowDomain []string
|
|
|
|
AllowSubdomain bool
|
|
|
|
Methods []string
|
|
|
|
MaxAge time.Duration
|
|
|
|
AllowCredentials bool
|
2022-11-11 12:09:27 +05:30
|
|
|
Headers []string
|
2022-01-20 23:16:10 +05:30
|
|
|
XFrameOptions string
|
|
|
|
}{
|
|
|
|
Enabled: false,
|
|
|
|
MaxAge: 10 * time.Minute,
|
2022-11-11 12:09:27 +05:30
|
|
|
Headers: []string{"Content-Type", "User-Agent"},
|
2022-01-20 23:16:10 +05:30
|
|
|
XFrameOptions: "SAMEORIGIN",
|
|
|
|
}
|
2019-05-13 21:08:53 +05:30
|
|
|
|
2023-02-19 21:42:01 +05:30
|
|
|
func loadCorsFrom(rootCfg ConfigProvider) {
|
|
|
|
mustMapSetting(rootCfg, "cors", &CORSConfig)
|
2020-01-29 13:17:46 +05:30
|
|
|
if CORSConfig.Enabled {
|
2019-05-13 21:08:53 +05:30
|
|
|
log.Info("CORS Service Enabled")
|
|
|
|
}
|
|
|
|
}
|