Files

28 lines
811 B
Go
Raw Permalink Normal View History

2019-05-13 08:38:53 -07:00
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2019-05-13 08:38:53 -07:00
package setting
import (
"time"
)
2022-01-20 18:46:10 +01:00
// CORSConfig defines CORS settings
var CORSConfig = struct {
Enabled bool
2023-12-25 20:13:18 +08:00
AllowDomain []string // FIXME: this option is from legacy code, it actually works as "AllowedOrigins". When refactoring in the future, the config option should also be renamed together.
2022-01-20 18:46:10 +01:00
Methods []string
MaxAge time.Duration
AllowCredentials bool
Headers []string
2022-01-20 18:46:10 +01:00
}{
AllowDomain: []string{"*"},
Methods: []string{"GET", "HEAD", "POST", "PUT", "PATCH", "DELETE", "OPTIONS"},
Headers: []string{"Content-Type", "User-Agent"},
MaxAge: 10 * time.Minute,
2022-01-20 18:46:10 +01:00
}
2019-05-13 08:38:53 -07:00
func loadCorsFrom(rootCfg ConfigProvider) {
mustMapSetting(rootCfg, "cors", &CORSConfig)
2019-05-13 08:38:53 -07:00
}