fix: 修改 CORS, 删除 开发代理
This commit is contained in:
@@ -39,8 +39,8 @@ func NewWK(username, password, host string, cookies []*http.Cookie) *WK {
|
|||||||
|
|
||||||
req := request.NewClient(&request.Config{
|
req := request.NewClient(&request.Config{
|
||||||
UserAgent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 Edg/140.0.0.0",
|
UserAgent: "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36 Edg/140.0.0.0",
|
||||||
Proxy: "http://127.0.0.1:9000",
|
// Proxy: "http://127.0.0.1:9000",
|
||||||
VerifySSL: false,
|
// VerifySSL: false,
|
||||||
})
|
})
|
||||||
if len(cookies) > 0 {
|
if len(cookies) > 0 {
|
||||||
req.SetCookies(cookies)
|
req.SetCookies(cookies)
|
||||||
|
|||||||
@@ -24,9 +24,9 @@ func SetupRouter() *gin.Engine {
|
|||||||
}
|
}
|
||||||
r := gin.Default()
|
r := gin.Default()
|
||||||
r.Use(cors.New(cors.Config{
|
r.Use(cors.New(cors.Config{
|
||||||
AllowOrigins: []string{"*.kmux.cn"},
|
AllowOrigins: []string{"*.kmux.cn*"},
|
||||||
AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "PATCH"},
|
AllowMethods: []string{"GET", "POST", "PUT", "DELETE", "PATCH"},
|
||||||
AllowHeaders: []string{"X-Session-Id"},
|
AllowHeaders: []string{"*", "X-Session-Id"},
|
||||||
ExposeHeaders: []string{"Content-Length"},
|
ExposeHeaders: []string{"Content-Length"},
|
||||||
AllowCredentials: true,
|
AllowCredentials: true,
|
||||||
MaxAge: 12 * time.Hour,
|
MaxAge: 12 * time.Hour,
|
||||||
|
|||||||
Reference in New Issue
Block a user