奇淼(piexlmax
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 99 additions and 4 deletions
-
16server/config.docker.yaml
-
16server/config.yaml
-
3server/config/config.go
-
14server/config/cors.go
-
5server/initialize/router.go
-
49server/middleware/cors.go
@ -0,0 +1,14 @@ |
|||
package config |
|||
|
|||
type CORS struct { |
|||
Mode string `mapstructure:"mode" json:"mode" yaml:"mode"` |
|||
Whitelist []CORSWhitelist `mapstructure:"whitelist" json:"whitelist" yaml:"whitelist"` |
|||
} |
|||
|
|||
type CORSWhitelist struct { |
|||
AllowOrigin string `mapstructure:"allow-origin" json:"allow-origin" yaml:"allow-origin"` |
|||
AllowMethods string `mapstructure:"allow-methods" json:"allow-methods" yaml:"allow-methods"` |
|||
AllowHeaders string `mapstructure:"allow-headers" json:"allow-headers" yaml:"allow-headers"` |
|||
ExposeHeaders string `mapstructure:"expose-headers" json:"expose-headers" yaml:"expose-headers"` |
|||
AllowCredentials bool `mapstructure:"allow-credentials" json:"allow-credentials" yaml:"allow-credentials"` |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue