🐳修改dockerfile

This commit is contained in:
coward
2024-08-20 10:34:22 +08:00
parent 6af6eec866
commit fa97ceb2d2
2 changed files with 31 additions and 10 deletions

View File

@@ -19,16 +19,6 @@ func InitRouter() *gin.Engine {
r.ForwardedByClientIP = true
// 将请求打印至控制台
r.Use(gin.Logger())
//r.Use(cors.New(cors.Config{
// AllowOrigins: []string{"http://localhost:3100"},
// AllowMethods: []string{"GET", "POST", "PUT", "PATCH", "DELETE"},
// AllowHeaders: []string{"Origin"},
// ExposeHeaders: []string{"Content-Length"},
// AllowCredentials: true,
// AllowOriginFunc: func(origin string) bool {
// return true
// },
//}))
if config.Config.File.Type == "local" {
r.Static("/assets", config.Config.File.Path)