router.go 1.2KB

123456789101112131415161718192021222324
  1. package routers
  2. import (
  3. admin_api "XT_Admin_Api/controllers/admin_api_controllers"
  4. "github.com/astaxie/beego"
  5. "github.com/astaxie/beego/plugins/cors"
  6. )
  7. func init() {
  8. beego.InsertFilter("*", beego.BeforeRouter, cors.Allow(&cors.Options{
  9. // AllowAllOrigins: true,
  10. 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"},
  11. AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "OPTIONS"},
  12. AllowHeaders: []string{"Origin", "Authorization", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type"},
  13. ExposeHeaders: []string{"Content-Length", "Access-Control-Allow-Origin", "Access-Control-Allow-Headers", "Content-Type"},
  14. AllowCredentials: true,
  15. }))
  16. // beego.Router("/", &controllers.MainController{})
  17. admin_api.AdminAPIControllersRegisterRouters()
  18. }