mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 01:34:27 +00:00 
			
		
		
		
	Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			40 lines
		
	
	
		
			828 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			828 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2019 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
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",
 | 
						|
}
 | 
						|
 | 
						|
func newCORSService() {
 | 
						|
	sec := Cfg.Section("cors")
 | 
						|
	if err := sec.MapTo(&CORSConfig); err != nil {
 | 
						|
		log.Fatal("Failed to map cors settings: %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	if CORSConfig.Enabled {
 | 
						|
		log.Info("CORS Service Enabled")
 | 
						|
	}
 | 
						|
}
 |