2019-05-13 15:38:53 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-13 15:38:53 +00:00
|
|
|
|
|
|
|
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
|
2022-11-11 06:39:27 +00:00
|
|
|
Headers []string
|
2022-01-20 17:46:10 +00:00
|
|
|
XFrameOptions string
|
|
|
|
}{
|
2023-04-19 20:23:25 +00:00
|
|
|
AllowDomain: []string{"*"},
|
|
|
|
Methods: []string{"GET", "HEAD", "POST", "PUT", "PATCH", "DELETE", "OPTIONS"},
|
2022-11-11 06:39:27 +00:00
|
|
|
Headers: []string{"Content-Type", "User-Agent"},
|
2023-04-19 20:23:25 +00:00
|
|
|
MaxAge: 10 * time.Minute,
|
2022-01-20 17:46:10 +00:00
|
|
|
XFrameOptions: "SAMEORIGIN",
|
|
|
|
}
|
2019-05-13 15:38:53 +00:00
|
|
|
|
2023-02-19 16:12:01 +00:00
|
|
|
func loadCorsFrom(rootCfg ConfigProvider) {
|
|
|
|
mustMapSetting(rootCfg, "cors", &CORSConfig)
|
2020-01-29 07:47:46 +00:00
|
|
|
if CORSConfig.Enabled {
|
2019-05-13 15:38:53 +00:00
|
|
|
log.Info("CORS Service Enabled")
|
|
|
|
}
|
|
|
|
}
|