123456789101112131415161718192021222324 |
- package routers
-
- import (
- admin_api "XT_Admin_Api/controllers/admin_api_controllers"
- "github.com/astaxie/beego"
- "github.com/astaxie/beego/plugins/cors"
- )
-
- func init() {
- beego.InsertFilter("*", beego.BeforeRouter, cors.Allow(&cors.Options{
- // AllowAllOrigins: true,
- AllowOrigins: []string{"https://xt.kuyicloud.com", "http://localhost:9527", "http://xt.test.shengws.com","https://xt.test.shengws.com", "http://xt.test.sgjyun.com","https://xt.test.sgjyun.com", "http://localhost:8081", "http://localhost:8082", "https://pad.kuyicloud.com", "http://pad.kuyicloud.com", "http://pad.test.sgjyun.com","https://pad.test.sgjyun.com", "http://admin.xt.test.sgjyun.com", "http://admin.xt.kuyicloud.com"},
- AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
- AllowHeaders: []string{"Origin", "Authorization", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type"},
- ExposeHeaders: []string{"Content-Length", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type"},
- AllowCredentials: true,
- }))
-
- // beego.Router("/", &controllers.MainController{})
-
-
- admin_api.AdminAPIControllersRegisterRouters()
- }
|