From f57bd4d937d9188129be295f6648d2b713f3726c Mon Sep 17 00:00:00 2001 From: kingecg Date: Fri, 21 Feb 2025 00:50:06 +0800 Subject: [PATCH] fix login --- .gitignore | 2 +- admin/login.go | 44 +- config.json | 18 +- go.mod | 15 +- go.sum | 16 +- gohttpd.log | 6633 ++++++++++++++++++++++++++++++++++++++++++ server/middleware.go | 2 +- server/server.go | 7 +- vendor/modules.txt | 3 + 9 files changed, 6702 insertions(+), 38 deletions(-) diff --git a/.gitignore b/.gitignore index a3c59dd..564b3dd 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,6 @@ *.out # Dependency directories (remove the comment below to include it) -# vendor/ +vendor/ target/ \ No newline at end of file diff --git a/admin/login.go b/admin/login.go index 3af48c0..a05f72f 100644 --- a/admin/login.go +++ b/admin/login.go @@ -1,13 +1,14 @@ package admin import ( + "encoding/hex" "errors" "net/http" "time" + "git.pyer.club/kingecg/gohttpd/model" "git.pyer.club/kingecg/gohttpd/server" "github.com/golang-jwt/jwt/v5" - "pyer.club/kingecg/gohttpd/model" ) type LoginModel struct { @@ -33,24 +34,28 @@ func login(w http.ResponseWriter, r *http.Request) { w.Write(server.NewErrorResult(err)) return } - w.WriteHeader(http.StatusOK) http.SetCookie(w, &http.Cookie{ - Name: "token", - Value: token, - Path: "/", - HttpOnly: true, - Secure: true, + Name: "token", + Value: token, + Path: "/", + // HttpOnly: true, + // Secure: true, SameSite: http.SameSiteStrictMode, Expires: time.Now().Add(time.Hour * 24 * 7), }) - w.Write(server.NewSuccessResult(token)) + w.WriteHeader(http.StatusOK) + + w.Write(server.NewSuccessResult("Login success")) + return } } else { w.WriteHeader(http.StatusForbidden) - resp := server.NewErrorResult(errors.New("Not allowed user/password")) + resp := server.NewErrorResult(errors.New("not allowed user/password")) w.Write(resp) + return } - return + w.WriteHeader(http.StatusUnauthorized) + w.Write(server.NewErrorResult(errors.New("not allowed user/password"))) } // 实现非对称加密 @@ -64,19 +69,28 @@ func Encrypt(plaintext string) (string, error) { // 实现非对称解密 func Decrypt(ciphertext string) (string, error) { - plaintext := make([]byte, len(ciphertext)) - for i := 0; i < len(ciphertext); i++ { - plaintext[i] = ciphertext[i] ^ 0xFF + plaintext := make([]byte, 1) + cipbyte := []byte(ciphertext) + // 每次取前2字节 + for i := 0; i < len(cipbyte); i += 2 { + d := cipbyte[i : i+2] + // 转成16进制 + dd, err := hex.DecodeString(string(d)) + if err != nil { + return "", err + } + // 异或 + plaintext = append(plaintext, dd[0]^0xFF) } //去除末尾13个字节 - plaintext = plaintext[:len(plaintext)-13] + plaintext = plaintext[1 : len(plaintext)-13] return string(plaintext), nil } // 生成token func GenerateToken(username string) (string, error) { // jwt token - jwtConfig := model.GetConfig().Jwt + jwtConfig := model.GetConfig().Admin.Jwt secret := jwtConfig.Secret expire := jwtConfig.Expire issuer := jwtConfig.Issuer diff --git a/config.json b/config.json index aade76b..59e3441 100644 --- a/config.json +++ b/config.json @@ -31,10 +31,16 @@ "paths": [ { "path": "/", - "root": "./adminui", - "default": "index.html" + "upstreams": ["http://localhost:4200"], + "directives":["HostSchemas $target"] } - ] + ], + "jwt":{ + "secret": "cloudops", + "expiresIn": "1h", + "issuer": "cloudops", + "audience": "cloudops" + } }, "servers":[{ "port": 3000, @@ -43,11 +49,7 @@ "Gzip_Response" ], "paths":[ - { - "path": "/", - "upstreams": ["http://localhost:4200"], - "directives":["HostSchemas $target"] - }, + { "path" : "/ssologin", "upstreams": ["http://192.168.12.157:9880"], diff --git a/go.mod b/go.mod index 64f6a36..5339128 100644 --- a/go.mod +++ b/go.mod @@ -3,14 +3,20 @@ module git.pyer.club/kingecg/gohttpd go 1.19 require ( - git.pyer.club/kingecg/godaemon v0.0.0-20231210104221-3a72649c6511 // indirect - git.pyer.club/kingecg/gologger v1.0.1 // indirect + git.pyer.club/kingecg/godaemon v0.0.0-20231210104221-3a72649c6511 + git.pyer.club/kingecg/gologger v1.0.1 + github.com/golang-jwt/jwt/v5 v5.2.1 + github.com/nanmu42/gzip v1.2.0 + github.com/samber/lo v1.39.0 + github.com/soheilhy/cmux v0.1.5 +) + +require ( github.com/gin-contrib/sse v0.1.0 // indirect github.com/gin-gonic/gin v1.7.4 // indirect github.com/go-playground/locales v0.14.0 // indirect github.com/go-playground/universal-translator v0.18.0 // indirect github.com/go-playground/validator/v10 v10.9.0 // indirect - github.com/golang-jwt/jwt/v5 v5.2.1 // indirect github.com/golang/protobuf v1.5.2 // indirect github.com/json-iterator/go v1.1.12 // indirect github.com/klauspost/compress v1.13.6 // indirect @@ -18,10 +24,7 @@ require ( github.com/mattn/go-isatty v0.0.14 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect - github.com/nanmu42/gzip v1.2.0 // indirect - github.com/samber/lo v1.39.0 // indirect github.com/signalsciences/ac v1.2.0 // indirect - github.com/soheilhy/cmux v0.1.5 // indirect github.com/ugorji/go/codec v1.2.6 // indirect golang.org/x/crypto v0.0.0-20210915214749-c084706c2272 // indirect golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect diff --git a/go.sum b/go.sum index 7ef7618..266eaa1 100644 --- a/go.sum +++ b/go.sum @@ -1,16 +1,16 @@ git.pyer.club/kingecg/godaemon v0.0.0-20231210104221-3a72649c6511 h1:qgNgm8ewkZdK7S3gaMagPKi90wgHpuGjpQdBVz21tjE= git.pyer.club/kingecg/godaemon v0.0.0-20231210104221-3a72649c6511/go.mod h1:6cL7tPbT1m6EaTvrbDg/YhoZG0Mms8WBD10yRGhng4o= -git.pyer.club/kingecg/gologger v1.0.0 h1:H3oFIJ1p7mlAgJgJ/wiM+hxn34x7IxY4YiafY8iMfAk= -git.pyer.club/kingecg/gologger v1.0.0/go.mod h1:SNSl2jRHPzIpHSzdKOoVG798rtYMjPDPFyxUrEgivkY= git.pyer.club/kingecg/gologger v1.0.1 h1:snCb0ePlfDUglX+CHwNzq5MRK5uNTnPUks1Dnapl/p8= git.pyer.club/kingecg/gologger v1.0.1/go.mod h1:SNSl2jRHPzIpHSzdKOoVG798rtYMjPDPFyxUrEgivkY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= github.com/gin-gonic/gin v1.7.4 h1:QmUZXrvJ9qZ3GfWvQ+2wnW/1ePrTEJqPKMYEU3lD/DM= github.com/gin-gonic/gin v1.7.4/go.mod h1:jD2toBW3GZUr5UMcdrwQA10I7RuaFOl/SGeDjXkfUtY= +github.com/go-playground/assert/v2 v2.0.1 h1:MsBgLAaY856+nPRTKrp3/OZK38U/wa0CcBYNjji3q3A= github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= github.com/go-playground/locales v0.14.0 h1:u50s323jtVGugKlcYeyzC0etD1HifMjqmJqb8WugfUU= @@ -27,6 +27,7 @@ github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaW github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= @@ -36,9 +37,11 @@ github.com/klauspost/compress v1.13.6 h1:P76CopJELS0TiO2mebmnzgWaajssP/EszplttgQ github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= github.com/leodido/go-urn v1.2.1 h1:BqpAaACuzVSgi/VLzGZIobT2z4v53pjosyNd9Yv6n/w= @@ -55,8 +58,10 @@ github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjY github.com/nanmu42/gzip v1.2.0 h1:pZoKNTlnJQJ4xM5Zi/EuIch77/x/9ww9PLsA3zEHLlU= github.com/nanmu42/gzip v1.2.0/go.mod h1:ubXkuAEakeUraJOokoM5/XuDdcjotF4Q+TvFSCgPSEg= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= +github.com/rogpeppe/go-internal v1.8.0 h1:FCbCCtXNOY3UtUuHUYaghJg4y7Fd14rXifAYUAtL9R8= github.com/rogpeppe/go-internal v1.8.0/go.mod h1:WmiCO8CzOY8rg0OYDC4/i/2WRWAB6poM+XZ2dLUbcbE= github.com/samber/lo v1.39.0 h1:4gTz1wUhNYLhFSKl6O+8peW0v2F4BCY034GRpU9WnuA= github.com/samber/lo v1.39.0/go.mod h1:+m/ZKRl6ClXCE2Lgf3MsQlWfh4bn1bz6CXEOxnEXnEA= @@ -68,9 +73,9 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw= -github.com/ugorji/go v1.2.6 h1:tGiWC9HENWE2tqYycIqFTNorMmFRVhNwCpDOpWqnk8E= github.com/ugorji/go v1.2.6/go.mod h1:anCg0y61KIhDlPZmnH+so+RQbysYVyDko0IMgJv0Nn0= github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= github.com/ugorji/go/codec v1.2.6 h1:7kbGefxLoDBuYXOms4yD7223OpNMMPNPZxXk5TvFcyQ= @@ -83,7 +88,6 @@ golang.org/x/crypto v0.0.0-20210915214749-c084706c2272/go.mod h1:GvvjBRRGRdwPK5y golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 h1:3MTrJm4PyNL9NBqvYDSj3DHl46qQakyfqfWo4jgfaEM= golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17/go.mod h1:lgLbSvA5ygNOMpwM/9anMpWVlVJ7Z+cHWq/eFuinpGE= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb h1:eBmm0M9fYhWpKZLjQUUKka/LtIxf46G4fxeEz5KJr9U= golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= @@ -101,19 +105,20 @@ golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= -golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= @@ -121,4 +126,5 @@ gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/gohttpd.log b/gohttpd.log index 978fd41..b6fe96a 100644 --- a/gohttpd.log +++ b/gohttpd.log @@ -6769,3 +6769,6636 @@ [2023-12-21 18:36:01] Access : info - match path: / [2023-12-21 18:36:01] Directive : debug - Gzip-Response [2023-12-21 18:36:01] Proxy : info - proxy 192.168.12.43:3000/vendor.js to http://localhost:4200 +[2025-02-20 20:32:09] Server : info - Load config success +[2025-02-20 20:32:09] Server : info - start gohttpd +[2025-02-20 20:32:09] ServerMux : debug - NewServeMux +[2025-02-20 20:32:09] ServerMux : debug - add directive: Record-Access +[2025-02-20 20:32:09] ServerMux : debug - add directive: Set-Header +[2025-02-20 20:32:09] ServerMux : debug - add directive: Set-Header +[2025-02-20 20:32:09] ServerMux : debug - add directive: Set-Header +[2025-02-20 20:32:09] ServerMux : debug - NewServeMux +[2025-02-20 20:32:09] ServerMux : debug - add directive: Record-Access +[2025-02-20 20:32:09] ServerMux : debug - add directive: Gzip_Response +[2025-02-20 20:32:09] Listener : debug - listen on :3000 +[2025-02-20 20:32:09] Listener : debug - listen on :8088 +[2025-02-20 20:32:09] Server : info - gohttpd start success +[2025-02-20 20:32:27] Access : info - From 127.0.0.1:34780-GET / +[2025-02-20 20:32:27] Access : info - match path: / +[2025-02-20 20:32:27] Directive : debug - Record-Access +[2025-02-20 20:32:27] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 20:32:27] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 20:32:27] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 20:32:27] filehandler : debug - access:/home/kingecg/code/gohttp/adminui +[2025-02-20 20:32:27] filehandler : debug - access:/home/kingecg/code/gohttp/adminui/index.html +[2025-02-20 20:32:27] Access : info - From 127.0.0.1:34780-GET /favicon.ico +[2025-02-20 20:32:27] Access : info - match path: / +[2025-02-20 20:32:27] Directive : debug - Record-Access +[2025-02-20 20:32:27] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 20:32:27] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 20:32:27] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 20:32:27] filehandler : debug - access:/home/kingecg/code/gohttp/adminui/favicon.ico +[2025-02-20 20:32:27] filehandler : error - access file error:/home/kingecg/code/gohttp/adminui/favicon.icostat /home/kingecg/code/gohttp/adminui/favicon.ico: no such file or directory +[2025-02-20 21:54:22] Server : info - Load config success +[2025-02-20 21:54:22] Server : info - start gohttpd +[2025-02-20 21:54:22] ServerMux : debug - NewServeMux +[2025-02-20 21:54:22] ServerMux : debug - add directive: Record-Access +[2025-02-20 21:54:22] ServerMux : debug - add directive: Set-Header +[2025-02-20 21:54:22] ServerMux : debug - add directive: Set-Header +[2025-02-20 21:54:22] ServerMux : debug - add directive: Set-Header +[2025-02-20 21:54:22] ServerMux : debug - NewServeMux +[2025-02-20 21:54:22] ServerMux : debug - add directive: Record-Access +[2025-02-20 21:54:22] ServerMux : debug - add directive: Gzip_Response +[2025-02-20 21:54:22] Listener : debug - listen on :8088 +[2025-02-20 21:54:22] Listener : debug - listen on :3000 +[2025-02-20 21:54:22] Server : info - gohttpd start success +[2025-02-20 21:54:34] Access : info - From 127.0.0.1:46988-GET / +[2025-02-20 21:54:34] Access : error - 404: / +[2025-02-20 21:54:44] Access : info - From 127.0.0.1:46988-GET /index.html +[2025-02-20 21:54:44] Access : error - 404: /index.html +[2025-02-20 21:56:03] Server : info - Load config success +[2025-02-20 21:56:03] Server : info - start gohttpd +[2025-02-20 21:56:03] ServerMux : debug - NewServeMux +[2025-02-20 21:56:03] ServerMux : debug - add directive: Record-Access +[2025-02-20 21:56:03] ServerMux : debug - add directive: Set-Header +[2025-02-20 21:56:03] ServerMux : debug - add directive: Set-Header +[2025-02-20 21:56:03] ServerMux : debug - add directive: Set-Header +[2025-02-20 21:56:03] ServerMux : debug - NewServeMux +[2025-02-20 21:56:03] ServerMux : debug - add directive: Record-Access +[2025-02-20 21:56:03] ServerMux : debug - add directive: Gzip_Response +[2025-02-20 21:56:03] Listener : debug - listen on :8088 +[2025-02-20 21:56:03] Listener : debug - listen on :3000 +[2025-02-20 21:56:03] Server : info - gohttpd start success +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43938-GET / +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43938-GET /@vite/client +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43946-GET /styles.css +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43952-GET /polyfills.js +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43968-GET /main.js +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43952-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43970-GET /styles.css.map +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43952-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser.js +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser.js?v=05b6cf05 to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43952-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_core.js +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_core.js?v=05b6cf05 to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43968-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js?v=05b6cf05 to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43952-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-XIFSGALC.js +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-XIFSGALC.js?v=0034f5ba to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43968-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-Q3WVEZNI.js +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-Q3WVEZNI.js?v=0034f5ba to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43974-GET / +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/?token=QawoJv8knjy9 to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43970-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-XIFSGALC.js.map +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-XIFSGALC.js.map to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43990-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-Q3WVEZNI.js.map +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-Q3WVEZNI.js.map to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:44006-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43968-GET /@ng/component +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740059766784 to http://localhost:4200 +[2025-02-20 21:56:06] Access : info - From 127.0.0.1:43970-GET /app.component.css.map +[2025-02-20 21:56:06] Access : info - match path: / +[2025-02-20 21:56:06] Directive : debug - Record-Access +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 21:56:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 21:56:06] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 22:02:53] Access : info - From 127.0.0.1:51208-GET /@ng/component +[2025-02-20 22:02:53] Access : info - match path: / +[2025-02-20 22:02:53] Directive : debug - Record-Access +[2025-02-20 22:02:53] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:02:53] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:02:53] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:02:53] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740060173452 to http://localhost:4200 +[2025-02-20 22:02:53] Access : info - From 127.0.0.1:51212-GET /app.component.css.map +[2025-02-20 22:02:53] Access : info - match path: / +[2025-02-20 22:02:53] Directive : debug - Record-Access +[2025-02-20 22:02:53] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:02:53] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:02:53] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:02:53] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 22:03:13] Access : info - From 127.0.0.1:51208-GET /@ng/component +[2025-02-20 22:03:13] Access : info - match path: / +[2025-02-20 22:03:13] Directive : debug - Record-Access +[2025-02-20 22:03:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:13] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740060193415 to http://localhost:4200 +[2025-02-20 22:03:13] Access : info - From 127.0.0.1:51212-GET /app.component.css.map +[2025-02-20 22:03:13] Access : info - match path: / +[2025-02-20 22:03:13] Directive : debug - Record-Access +[2025-02-20 22:03:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:13] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 22:03:39] Access : info - From 127.0.0.1:51208-GET / +[2025-02-20 22:03:39] Access : info - match path: / +[2025-02-20 22:03:39] Directive : debug - Record-Access +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:39] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 22:03:39] Access : info - From 127.0.0.1:51208-GET /@vite/client +[2025-02-20 22:03:39] Access : info - match path: / +[2025-02-20 22:03:39] Directive : debug - Record-Access +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:39] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 22:03:39] Access : info - From 127.0.0.1:51208-GET /styles.css +[2025-02-20 22:03:39] Access : info - match path: / +[2025-02-20 22:03:39] Directive : debug - Record-Access +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:39] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 22:03:39] Access : info - From 127.0.0.1:51208-GET /polyfills.js +[2025-02-20 22:03:39] Access : info - match path: / +[2025-02-20 22:03:39] Directive : debug - Record-Access +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:39] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 22:03:39] Access : info - From 127.0.0.1:51208-GET /main.js +[2025-02-20 22:03:39] Access : info - match path: / +[2025-02-20 22:03:39] Directive : debug - Record-Access +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:39] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 22:03:39] Access : info - From 127.0.0.1:51212-GET /styles.css.map +[2025-02-20 22:03:39] Access : info - match path: / +[2025-02-20 22:03:39] Directive : debug - Record-Access +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:39] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 22:03:39] Access : info - From 127.0.0.1:51208-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 22:03:39] Access : info - match path: / +[2025-02-20 22:03:39] Directive : debug - Record-Access +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 22:03:40] Access : info - From 127.0.0.1:50810-GET / +[2025-02-20 22:03:40] Access : info - match path: / +[2025-02-20 22:03:40] Directive : debug - Record-Access +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:40] Proxy : info - proxy localhost:8088/?token=QawoJv8knjy9 to http://localhost:4200 +[2025-02-20 22:03:40] Access : info - From 127.0.0.1:51212-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-XIFSGALC.js.map +[2025-02-20 22:03:40] Access : info - match path: / +[2025-02-20 22:03:40] Directive : debug - Record-Access +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:40] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-XIFSGALC.js.map to http://localhost:4200 +[2025-02-20 22:03:40] Access : info - From 127.0.0.1:51212-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-Q3WVEZNI.js.map +[2025-02-20 22:03:40] Access : info - match path: / +[2025-02-20 22:03:40] Directive : debug - Record-Access +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:40] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-Q3WVEZNI.js.map to http://localhost:4200 +[2025-02-20 22:03:40] Access : info - From 127.0.0.1:50812-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 22:03:40] Access : info - match path: / +[2025-02-20 22:03:40] Directive : debug - Record-Access +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:40] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 22:03:40] Access : info - From 127.0.0.1:51208-GET /@ng/component +[2025-02-20 22:03:40] Access : info - match path: / +[2025-02-20 22:03:40] Directive : debug - Record-Access +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:40] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740060220357 to http://localhost:4200 +[2025-02-20 22:03:40] Access : info - From 127.0.0.1:51212-GET /app.component.css.map +[2025-02-20 22:03:40] Access : info - match path: / +[2025-02-20 22:03:40] Directive : debug - Record-Access +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:03:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:03:40] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 22:25:37] Access : info - From 127.0.0.1:60938-GET / +[2025-02-20 22:25:37] Access : info - match path: / +[2025-02-20 22:25:37] Directive : debug - Record-Access +[2025-02-20 22:25:37] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:25:37] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:25:37] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:25:37] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 22:35:51] Access : info - From 127.0.0.1:57456-GET / +[2025-02-20 22:35:51] Access : info - match path: / +[2025-02-20 22:35:51] Directive : debug - Record-Access +[2025-02-20 22:35:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:51] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 22:35:51] Access : info - From 127.0.0.1:57472-GET / +[2025-02-20 22:35:51] Access : info - match path: / +[2025-02-20 22:35:51] Directive : debug - Record-Access +[2025-02-20 22:35:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:51] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57472-GET /@vite/client +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /styles.css +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /polyfills.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57502-GET /main.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57514-GET /styles.css.map +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser.js?v=54109976 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_core.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_core.js?v=54109976 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57502-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js?v=54109976 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57472-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js?v=54109976 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common.js?v=54109976 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js?v=54109976 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57502-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js?v=54109976 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js?v=54109976 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_http.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_http.js?v=54109976 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57524-GET / +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js?v=81a76f48 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js?v=81a76f48 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57502-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js?v=81a76f48 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js?v=81a76f48 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57502-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-WDMUDEB6.js +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-WDMUDEB6.js?v=81a76f48 to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57514-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57532-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57558-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57574-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57582-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57514-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 22:35:52] Access : info - From 127.0.0.1:57532-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 22:35:52] Access : info - match path: / +[2025-02-20 22:35:52] Directive : debug - Record-Access +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:52] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 22:35:53] Access : info - From 127.0.0.1:57488-GET /@ng/component +[2025-02-20 22:35:53] Access : info - match path: / +[2025-02-20 22:35:53] Directive : debug - Record-Access +[2025-02-20 22:35:53] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:53] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:53] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:53] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740062152905 to http://localhost:4200 +[2025-02-20 22:35:53] Access : info - From 127.0.0.1:57546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 22:35:53] Access : info - match path: / +[2025-02-20 22:35:53] Directive : debug - Record-Access +[2025-02-20 22:35:53] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:53] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:53] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:53] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 22:35:55] Access : info - From 127.0.0.1:57558-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 22:35:55] Access : info - match path: / +[2025-02-20 22:35:55] Directive : debug - Record-Access +[2025-02-20 22:35:55] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:35:55] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:35:55] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:35:55] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 22:40:38] Access : info - From 127.0.0.1:36426-GET /styles.css +[2025-02-20 22:40:38] Access : info - match path: / +[2025-02-20 22:40:38] Directive : debug - Record-Access +[2025-02-20 22:40:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:40:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:40:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:40:38] Proxy : info - proxy localhost:8088/styles.css?t=1740062438533 to http://localhost:4200 +[2025-02-20 22:40:38] Access : info - From 127.0.0.1:36428-GET /styles.css.map +[2025-02-20 22:40:38] Access : info - match path: / +[2025-02-20 22:40:38] Directive : debug - Record-Access +[2025-02-20 22:40:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:40:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:40:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:40:38] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 22:40:40] Access : info - From 127.0.0.1:36426-GET /@ng/component +[2025-02-20 22:40:40] Access : info - match path: / +[2025-02-20 22:40:40] Directive : debug - Record-Access +[2025-02-20 22:40:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:40:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:40:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:40:40] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740062440890 to http://localhost:4200 +[2025-02-20 22:40:41] Access : info - From 127.0.0.1:36428-GET /app.component.css.map +[2025-02-20 22:40:41] Access : info - match path: / +[2025-02-20 22:40:41] Directive : debug - Record-Access +[2025-02-20 22:40:41] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:40:41] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:40:41] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:40:41] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 22:48:28] Access : info - From 127.0.0.1:49644-GET / +[2025-02-20 22:48:28] Access : info - match path: / +[2025-02-20 22:48:28] Directive : debug - Record-Access +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:28] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 22:48:28] Access : info - From 127.0.0.1:49644-GET /@vite/client +[2025-02-20 22:48:28] Access : info - match path: / +[2025-02-20 22:48:28] Directive : debug - Record-Access +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:28] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 22:48:28] Access : info - From 127.0.0.1:49648-GET /styles.css +[2025-02-20 22:48:28] Access : info - match path: / +[2025-02-20 22:48:28] Directive : debug - Record-Access +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:28] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 22:48:28] Access : info - From 127.0.0.1:49644-GET /polyfills.js +[2025-02-20 22:48:28] Access : info - match path: / +[2025-02-20 22:48:28] Directive : debug - Record-Access +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:28] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 22:48:28] Access : info - From 127.0.0.1:49650-GET /main.js +[2025-02-20 22:48:28] Access : info - match path: / +[2025-02-20 22:48:28] Directive : debug - Record-Access +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:28] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 22:48:28] Access : info - From 127.0.0.1:49648-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 22:48:28] Access : info - match path: / +[2025-02-20 22:48:28] Directive : debug - Record-Access +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:28] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 22:48:28] Access : info - From 127.0.0.1:40058-GET /styles.css.map +[2025-02-20 22:48:28] Access : info - match path: / +[2025-02-20 22:48:28] Directive : debug - Record-Access +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:28] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 22:48:28] Access : info - From 127.0.0.1:49648-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js +[2025-02-20 22:48:28] Access : info - match path: / +[2025-02-20 22:48:28] Directive : debug - Record-Access +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:28] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js?v=81a76f48 to http://localhost:4200 +[2025-02-20 22:48:28] Access : info - From 127.0.0.1:49650-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js +[2025-02-20 22:48:28] Access : info - match path: / +[2025-02-20 22:48:28] Directive : debug - Record-Access +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:28] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js?v=81a76f48 to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:49644-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-WDMUDEB6.js +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-WDMUDEB6.js?v=81a76f48 to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40070-GET / +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40082-GET /@ng/component +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740062909363 to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40094-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40090-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40058-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40102-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40108-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40110-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40094-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40090-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40058-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40108-GET /app.component.css.map +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 22:48:29] Access : info - From 127.0.0.1:40110-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 22:48:29] Access : info - match path: / +[2025-02-20 22:48:29] Directive : debug - Record-Access +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:48:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:48:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 22:54:38] Access : info - From 127.0.0.1:42830-GET / +[2025-02-20 22:54:38] Access : info - match path: / +[2025-02-20 22:54:38] Directive : debug - Record-Access +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:38] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 22:54:38] Access : info - From 127.0.0.1:42830-GET /@vite/client +[2025-02-20 22:54:38] Access : info - match path: / +[2025-02-20 22:54:38] Directive : debug - Record-Access +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:38] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 22:54:38] Access : info - From 127.0.0.1:41558-GET /styles.css +[2025-02-20 22:54:38] Access : info - match path: / +[2025-02-20 22:54:38] Directive : debug - Record-Access +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:38] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 22:54:38] Access : info - From 127.0.0.1:41558-GET /polyfills.js +[2025-02-20 22:54:38] Access : info - match path: / +[2025-02-20 22:54:38] Directive : debug - Record-Access +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:38] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 22:54:38] Access : info - From 127.0.0.1:42830-GET /main.js +[2025-02-20 22:54:38] Access : info - match path: / +[2025-02-20 22:54:38] Directive : debug - Record-Access +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:38] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41558-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41558-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser.js +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser.js?v=54109976 to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41566-GET /styles.css.map +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:42830-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js?v=81a76f48 to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41576-GET / +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41590-GET /@ng/component +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740063279903 to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41590-GET /chunk-N65NMTRO.js +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/chunk-N65NMTRO.js to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41566-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41612-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41600-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41622-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41638-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 22:54:39] Access : info - From 127.0.0.1:41640-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 22:54:39] Access : info - match path: / +[2025-02-20 22:54:39] Directive : debug - Record-Access +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 22:54:40] Access : info - From 127.0.0.1:41566-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 22:54:40] Access : info - match path: / +[2025-02-20 22:54:40] Directive : debug - Record-Access +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:40] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 22:54:40] Access : info - From 127.0.0.1:41612-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 22:54:40] Access : info - match path: / +[2025-02-20 22:54:40] Directive : debug - Record-Access +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:40] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 22:54:40] Access : info - From 127.0.0.1:41600-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 22:54:40] Access : info - match path: / +[2025-02-20 22:54:40] Directive : debug - Record-Access +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:40] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 22:54:40] Access : info - From 127.0.0.1:41566-GET /app.component.css.map +[2025-02-20 22:54:40] Access : info - match path: / +[2025-02-20 22:54:40] Directive : debug - Record-Access +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:40] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 22:54:40] Access : info - From 127.0.0.1:41590-GET /@ng/component +[2025-02-20 22:54:40] Access : info - match path: / +[2025-02-20 22:54:40] Directive : debug - Record-Access +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:40] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740063280004 to http://localhost:4200 +[2025-02-20 22:54:40] Access : info - From 127.0.0.1:41600-GET /login.component.css.map +[2025-02-20 22:54:40] Access : info - match path: / +[2025-02-20 22:54:40] Directive : debug - Record-Access +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:40] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 22:54:40] Access : info - From 127.0.0.1:41566-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 22:54:40] Access : info - match path: / +[2025-02-20 22:54:40] Directive : debug - Record-Access +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:40] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 22:54:40] Access : info - From 127.0.0.1:41590-GET /favicon.ico +[2025-02-20 22:54:40] Access : info - match path: / +[2025-02-20 22:54:40] Directive : debug - Record-Access +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 22:54:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 22:54:40] Proxy : info - proxy localhost:8088/favicon.ico to http://localhost:4200 +[2025-02-20 23:01:55] Access : info - From 127.0.0.1:58058-GET / +[2025-02-20 23:01:55] Access : info - match path: / +[2025-02-20 23:01:55] Directive : debug - Record-Access +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:55] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:01:55] Access : info - From 127.0.0.1:58058-GET /@vite/client +[2025-02-20 23:01:55] Access : info - match path: / +[2025-02-20 23:01:55] Directive : debug - Record-Access +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:55] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:01:55] Access : info - From 127.0.0.1:58074-GET /styles.css +[2025-02-20 23:01:55] Access : info - match path: / +[2025-02-20 23:01:55] Directive : debug - Record-Access +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:55] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:01:55] Access : info - From 127.0.0.1:58074-GET /polyfills.js +[2025-02-20 23:01:55] Access : info - match path: / +[2025-02-20 23:01:55] Directive : debug - Record-Access +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:55] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:01:55] Access : info - From 127.0.0.1:58058-GET /main.js +[2025-02-20 23:01:55] Access : info - match path: / +[2025-02-20 23:01:55] Directive : debug - Record-Access +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:55] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:55] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:01:56] Access : info - From 127.0.0.1:58074-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:01:56] Access : info - match path: / +[2025-02-20 23:01:56] Directive : debug - Record-Access +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:56] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:01:56] Access : info - From 127.0.0.1:58086-GET /styles.css.map +[2025-02-20 23:01:56] Access : info - match path: / +[2025-02-20 23:01:56] Directive : debug - Record-Access +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:56] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:01:56] Access : info - From 127.0.0.1:58074-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js +[2025-02-20 23:01:56] Access : info - match path: / +[2025-02-20 23:01:56] Directive : debug - Record-Access +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:56] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js?v=81a76f48 to http://localhost:4200 +[2025-02-20 23:01:56] Access : info - From 127.0.0.1:58058-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js +[2025-02-20 23:01:56] Access : info - match path: / +[2025-02-20 23:01:56] Directive : debug - Record-Access +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:56] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js?v=81a76f48 to http://localhost:4200 +[2025-02-20 23:01:56] Access : info - From 127.0.0.1:58100-GET / +[2025-02-20 23:01:56] Access : info - match path: / +[2025-02-20 23:01:56] Directive : debug - Record-Access +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:56] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:01:56] Access : info - From 127.0.0.1:58106-GET /@ng/component +[2025-02-20 23:01:56] Access : info - match path: / +[2025-02-20 23:01:56] Directive : debug - Record-Access +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:56] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740063716832 to http://localhost:4200 +[2025-02-20 23:01:56] Access : info - From 127.0.0.1:58106-GET /chunk-RIU7KSMB.js +[2025-02-20 23:01:56] Access : info - match path: / +[2025-02-20 23:01:56] Directive : debug - Record-Access +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:56] Proxy : info - proxy localhost:8088/chunk-RIU7KSMB.js to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58086-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58110-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58124-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58136-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58086-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58138-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58140-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58110-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58124-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58106-GET /@ng/component +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740063716923 to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58086-GET /app.component.css.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58086-GET /login.component.css.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58140-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:01:57] Access : info - From 127.0.0.1:58106-GET /favicon.ico +[2025-02-20 23:01:57] Access : info - match path: / +[2025-02-20 23:01:57] Directive : debug - Record-Access +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:01:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:01:57] Proxy : info - proxy localhost:8088/favicon.ico to http://localhost:4200 +[2025-02-20 23:09:03] Access : info - From 127.0.0.1:52870-GET / +[2025-02-20 23:09:03] Access : info - match path: / +[2025-02-20 23:09:03] Directive : debug - Record-Access +[2025-02-20 23:09:03] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:03] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:03] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:03] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:09:04] Access : info - From 127.0.0.1:52870-GET /@vite/client +[2025-02-20 23:09:04] Access : info - match path: / +[2025-02-20 23:09:04] Directive : debug - Record-Access +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:04] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:09:04] Access : info - From 127.0.0.1:52870-GET /styles.css +[2025-02-20 23:09:04] Access : info - match path: / +[2025-02-20 23:09:04] Directive : debug - Record-Access +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:04] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:09:04] Access : info - From 127.0.0.1:52870-GET /polyfills.js +[2025-02-20 23:09:04] Access : info - match path: / +[2025-02-20 23:09:04] Directive : debug - Record-Access +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:04] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:09:04] Access : info - From 127.0.0.1:52870-GET /main.js +[2025-02-20 23:09:04] Access : info - match path: / +[2025-02-20 23:09:04] Directive : debug - Record-Access +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:04] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:09:04] Access : info - From 127.0.0.1:52870-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:09:04] Access : info - match path: / +[2025-02-20 23:09:04] Directive : debug - Record-Access +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:04] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:09:04] Access : info - From 127.0.0.1:52880-GET /styles.css.map +[2025-02-20 23:09:04] Access : info - match path: / +[2025-02-20 23:09:04] Directive : debug - Record-Access +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:04] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:09:04] Access : info - From 127.0.0.1:52884-GET / +[2025-02-20 23:09:04] Access : info - match path: / +[2025-02-20 23:09:04] Directive : debug - Record-Access +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:04] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:09:04] Access : info - From 127.0.0.1:52870-GET /@ng/component +[2025-02-20 23:09:04] Access : info - match path: / +[2025-02-20 23:09:04] Directive : debug - Record-Access +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:04] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740064144884 to http://localhost:4200 +[2025-02-20 23:09:04] Access : info - From 127.0.0.1:52870-GET /chunk-U3YWHRRG.js +[2025-02-20 23:09:04] Access : info - match path: / +[2025-02-20 23:09:04] Directive : debug - Record-Access +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:04] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:04] Proxy : info - proxy localhost:8088/chunk-U3YWHRRG.js to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52880-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52902-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52894-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52908-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52910-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52924-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52880-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52902-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52894-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52870-GET /@ng/component +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740064144979 to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52880-GET /app.component.css.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52902-GET /login.component.css.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:09:05] Access : info - From 127.0.0.1:52910-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:09:05] Access : info - match path: / +[2025-02-20 23:09:05] Directive : debug - Record-Access +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:09:05] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:09:05] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:12:59] Access : info - From 127.0.0.1:41516-GET / +[2025-02-20 23:12:59] Access : info - match path: / +[2025-02-20 23:12:59] Directive : debug - Record-Access +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:12:59] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:12:59] Access : info - From 127.0.0.1:41516-GET /@vite/client +[2025-02-20 23:12:59] Access : info - match path: / +[2025-02-20 23:12:59] Directive : debug - Record-Access +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:12:59] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:12:59] Access : info - From 127.0.0.1:41520-GET /styles.css +[2025-02-20 23:12:59] Access : info - match path: / +[2025-02-20 23:12:59] Directive : debug - Record-Access +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:12:59] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:12:59] Access : info - From 127.0.0.1:41516-GET /polyfills.js +[2025-02-20 23:12:59] Access : info - match path: / +[2025-02-20 23:12:59] Directive : debug - Record-Access +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:12:59] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:12:59] Access : info - From 127.0.0.1:41520-GET /main.js +[2025-02-20 23:12:59] Access : info - match path: / +[2025-02-20 23:12:59] Directive : debug - Record-Access +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:12:59] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:12:59] Access : info - From 127.0.0.1:41520-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:12:59] Access : info - match path: / +[2025-02-20 23:12:59] Directive : debug - Record-Access +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:12:59] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:12:59] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41524-GET /styles.css.map +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41534-GET / +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41520-GET /@ng/component +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740064380621 to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41520-GET /chunk-XIC7YLCO.js +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/chunk-XIC7YLCO.js to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41520-GET /favicon.ico +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/favicon.ico to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41516-GET /@ng/component +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740064380762 to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41524-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41550-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41574-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:13:00] Access : info - From 127.0.0.1:41560-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:13:00] Access : info - match path: / +[2025-02-20 23:13:00] Directive : debug - Record-Access +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:00] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:00] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:13:01] Access : info - From 127.0.0.1:41524-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:13:01] Access : info - match path: / +[2025-02-20 23:13:01] Directive : debug - Record-Access +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:01] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:13:01] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:13:01] Access : info - match path: / +[2025-02-20 23:13:01] Directive : debug - Record-Access +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:01] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:13:01] Access : info - From 127.0.0.1:41586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:13:01] Access : info - match path: / +[2025-02-20 23:13:01] Directive : debug - Record-Access +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:01] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:13:01] Access : info - From 127.0.0.1:41574-GET /app.component.css.map +[2025-02-20 23:13:01] Access : info - match path: / +[2025-02-20 23:13:01] Directive : debug - Record-Access +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:01] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:13:01] Access : info - From 127.0.0.1:41550-GET /login.component.css.map +[2025-02-20 23:13:01] Access : info - match path: / +[2025-02-20 23:13:01] Directive : debug - Record-Access +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:01] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:13:01] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:13:01] Access : info - match path: / +[2025-02-20 23:13:01] Directive : debug - Record-Access +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:01] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:13:38] Access : info - From 127.0.0.1:41516-GET / +[2025-02-20 23:13:38] Access : info - match path: / +[2025-02-20 23:13:38] Directive : debug - Record-Access +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:38] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:13:38] Access : info - From 127.0.0.1:41516-GET /@vite/client +[2025-02-20 23:13:38] Access : info - match path: / +[2025-02-20 23:13:38] Directive : debug - Record-Access +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:38] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:13:38] Access : info - From 127.0.0.1:41516-GET /polyfills.js +[2025-02-20 23:13:38] Access : info - match path: / +[2025-02-20 23:13:38] Directive : debug - Record-Access +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:38] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:13:38] Access : info - From 127.0.0.1:41516-GET /main.js +[2025-02-20 23:13:38] Access : info - match path: / +[2025-02-20 23:13:38] Directive : debug - Record-Access +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:38] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:13:38] Access : info - From 127.0.0.1:41516-GET /styles.css +[2025-02-20 23:13:38] Access : info - match path: / +[2025-02-20 23:13:38] Directive : debug - Record-Access +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:38] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:13:38] Access : info - From 127.0.0.1:41516-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:13:38] Access : info - match path: / +[2025-02-20 23:13:38] Directive : debug - Record-Access +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:38] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:13:38] Access : info - From 127.0.0.1:41546-GET /styles.css.map +[2025-02-20 23:13:38] Access : info - match path: / +[2025-02-20 23:13:38] Directive : debug - Record-Access +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:38] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:53114-GET / +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41516-GET /@ng/component +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740064419461 to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41516-GET /chunk-KUZW4TBY.js +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/chunk-KUZW4TBY.js to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41516-GET /@ng/component +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740064419602 to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41524-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41550-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41574-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41560-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41524-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41516-GET /iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAADfklEQVRoQ+2YSyi0URjH/xOFiRULYeGWW7mkyEzYYUeKJpcFYScLpCmUFEOSJAui1IwFJaE0CUW5LFxLUSQhEdlg4ZLv+56nb6ZPucz7MnV6v/PWNDWdOe9z/r/zf57nHB2AX38+8hFEAZ0EIgiJv2FIIGLxgAQigQimgGDhKHaIyWRCe3s7goOD0d/fj7q6OrctyWazoaSkBGFhYTg5OXHbe0SaWBEQX19fXF1d4eXlBR0dHdjc3MTc3ByOjo4QERGBjY0NpKSkfLg+Pz8//r+Pjw/DrK6udo49Pz9HQEAAvL29nb9JIF9slYSEBOzu7mJoaAhVVVXO0QQkNDQUHh4eiI+Px97e3rszVVRUYGBggMdJIO+LrcghaWlpWFtbQ3d3N+rr698AeXh4QHR09KdpbHl5GV5eXkhNTZVAPtj8LgOx2+3Iycl5M83w8DAqKys5Zd3e3nI6IrGpvlBa+/cJDw/ncVR/GhsbVQPR6XQYHR1FUVERv5ti0NLjMhCDwYCMjAx0dnZiamoKIyMjXGh3dnZY6Lu7O3R1dbFYeXl5mJ6efqNTS0sLmpubYTQasb6+rhqIxWKB2WxGU1MT2tratMSC1+IyEBr8Wcq6v78HQbu8vMTi4iLy8/OdYtGuJmjHx8coLy/H2dmZKiBUtwYHB9HX14eamhrNwfhxIElJSSxYWVkZp63r62sWLTMzE0tLSygtLeVvNUBiYmIwMzODiYkJFBcX4/X1VQL5yiEEhFyyurqK2tpa9PT0sGiU5wsKChAYGAh/f3/FQMhtVqsV+/v7SE9Px9PTkyZhuMUhNOnBwQEeHx+RmJgIvV7PaWxsbIxb5ZCQEMVAqD7RGYbSYnJyMg4PDyUQV2oIOYQeKrpUfEm8uLg40AGPdvbKyooqIAsLC+jt7cXk5CS2t7e5MXh+ftYklB8t6g4gQUFBOD09ZSh0mIyNjUVUVBQLqMYhjquT1tZW7tSom2toaJBAXKkhDpVmZ2e5sEdGRvLZw9GifgeIp6cn6HBJcWRnZ2N+fl5zUNziEFKpsLAQ4+Pj3A3RtQp1Vt91CP2f3EJnH7oZIPfd3NxoCorbgNAVycXFBba2tpCVleUU7TsOcUxC7TN1XdQG5+bm/r9ANLVyQRejyCGCrkFTYUkgguGUQCQQwRQQLBzpEAlEMAUEC0c6RAIRTAHBwpEOEQzIbw7cXh+rI2V7AAAAAElFTkSuQmCC +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAADfklEQVRoQ+2YSyi0URjH/xOFiRULYeGWW7mkyEzYYUeKJpcFYScLpCmUFEOSJAui1IwFJaE0CUW5LFxLUSQhEdlg4ZLv+56nb6ZPucz7MnV6v/PWNDWdOe9z/r/zf57nHB2AX38+8hFEAZ0EIgiJv2FIIGLxgAQigQimgGDhKHaIyWRCe3s7goOD0d/fj7q6OrctyWazoaSkBGFhYTg5OXHbe0SaWBEQX19fXF1d4eXlBR0dHdjc3MTc3ByOjo4QERGBjY0NpKSkfLg+Pz8//r+Pjw/DrK6udo49Pz9HQEAAvL29nb9JIF9slYSEBOzu7mJoaAhVVVXO0QQkNDQUHh4eiI+Px97e3rszVVRUYGBggMdJIO+LrcghaWlpWFtbQ3d3N+rr698AeXh4QHR09KdpbHl5GV5eXkhNTZVAPtj8LgOx2+3Iycl5M83w8DAqKys5Zd3e3nI6IrGpvlBa+/cJDw/ncVR/GhsbVQPR6XQYHR1FUVERv5ti0NLjMhCDwYCMjAx0dnZiamoKIyMjXGh3dnZY6Lu7O3R1dbFYeXl5mJ6efqNTS0sLmpubYTQasb6+rhqIxWKB2WxGU1MT2tratMSC1+IyEBr8Wcq6v78HQbu8vMTi4iLy8/OdYtGuJmjHx8coLy/H2dmZKiBUtwYHB9HX14eamhrNwfhxIElJSSxYWVkZp63r62sWLTMzE0tLSygtLeVvNUBiYmIwMzODiYkJFBcX4/X1VQL5yiEEhFyyurqK2tpa9PT0sGiU5wsKChAYGAh/f3/FQMhtVqsV+/v7SE9Px9PTkyZhuMUhNOnBwQEeHx+RmJgIvV7PaWxsbIxb5ZCQEMVAqD7RGYbSYnJyMg4PDyUQV2oIOYQeKrpUfEm8uLg40AGPdvbKyooqIAsLC+jt7cXk5CS2t7e5MXh+ftYklB8t6g4gQUFBOD09ZSh0mIyNjUVUVBQLqMYhjquT1tZW7tSom2toaJBAXKkhDpVmZ2e5sEdGRvLZw9GifgeIp6cn6HBJcWRnZ2N+fl5zUNziEFKpsLAQ4+Pj3A3RtQp1Vt91CP2f3EJnH7oZIPfd3NxoCorbgNAVycXFBba2tpCVleUU7TsOcUxC7TN1XdQG5+bm/r9ANLVyQRejyCGCrkFTYUkgguGUQCQQwRQQLBzpEAlEMAUEC0c6RAIRTAHBwpEOEQzIbw7cXh+rI2V7AAAAAElFTkSuQmCC to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:13:39] Access : info - From 127.0.0.1:41574-GET /app.component.css.map +[2025-02-20 23:13:39] Access : info - match path: / +[2025-02-20 23:13:39] Directive : debug - Record-Access +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:39] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:13:40] Access : info - From 127.0.0.1:41560-GET /login.component.css.map +[2025-02-20 23:13:40] Access : info - match path: / +[2025-02-20 23:13:40] Directive : debug - Record-Access +[2025-02-20 23:13:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:40] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:13:40] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:13:40] Access : info - match path: / +[2025-02-20 23:13:40] Directive : debug - Record-Access +[2025-02-20 23:13:40] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:40] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:40] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:40] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:13:43] Access : info - From 127.0.0.1:41516-GET / +[2025-02-20 23:13:43] Access : info - match path: / +[2025-02-20 23:13:43] Directive : debug - Record-Access +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:43] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:13:43] Access : info - From 127.0.0.1:41516-GET /@vite/client +[2025-02-20 23:13:43] Access : info - match path: / +[2025-02-20 23:13:43] Directive : debug - Record-Access +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:43] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:13:43] Access : info - From 127.0.0.1:41516-GET /styles.css +[2025-02-20 23:13:43] Access : info - match path: / +[2025-02-20 23:13:43] Directive : debug - Record-Access +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:43] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:13:43] Access : info - From 127.0.0.1:41516-GET /polyfills.js +[2025-02-20 23:13:43] Access : info - match path: / +[2025-02-20 23:13:43] Directive : debug - Record-Access +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:43] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:13:43] Access : info - From 127.0.0.1:41516-GET /main.js +[2025-02-20 23:13:43] Access : info - match path: / +[2025-02-20 23:13:43] Directive : debug - Record-Access +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:43] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:13:43] Access : info - From 127.0.0.1:41516-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:13:43] Access : info - match path: / +[2025-02-20 23:13:43] Directive : debug - Record-Access +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:43] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:43] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41546-GET /styles.css.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:53128-GET / +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41516-GET /@ng/component +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740064424379 to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41516-GET /chunk-KUZW4TBY.js +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/chunk-KUZW4TBY.js to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41524-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41550-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41574-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41560-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41524-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41546-GET /app.component.css.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41516-GET /@ng/component +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740064424450 to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41574-GET /login.component.css.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:53142-GET /iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAADTUlEQVRoQ+2YSyi0YRTH/1bMxqWQGLeQZMJCzU5yiVlQsiCX5LJQZEVjY2GlFCWXci8NC7eUjLuSpVJCKcY1JTUjUaz4nKfvnW/emmnyNr6eOKem3t7mmfO8/997/uc84wfg4/PDIYkCfgxEEhJ/t8FA5OIBBsJAJFNAsu18qUIsFgsqKysRHx+Pq6srr4+Snp6O0dFRGAwGHB0dwWg0el3z27/wrUB2d3eRlZWFvr4+HB4eYnJy0ql3aGgoRkZGUFJSgsHBQTQ3N/92FuL5vxWIw+GA3W5HUlKSSmyTyYSJiQnodDoEBQUxEBd1vhXI29sbjo+PkZmZ6UyZk5OD7e1tzMzMYHx8XFxzhfwjoglIcnIyGhsbUVZWBrKe6+trISpZE0V7ezu6urpUVWGz2ZCYmIi8vDxER0cL+yJQ+/v7HoEoPSswMBBmsxnV1dUIDw/H7e2t6E09PT14f3//UVanCcjKygpIpLm5OQQHB6OhoQExMTFoaWlBf3+/sKjU1FTMzs7i5uYGra2teHl5wdbWlko8b0Cogurq6rC0tITn52dMTU0JAAQ8Pz8fTU1NGBoaYiB7e3vIzs52vp2xsbE4PT3F4+Mj9Hq98747y3JVzxuQsbEx1NfXCyDU/JWIjIzE3d0ddnZ2kJuby0CqqqowPT2tEmJtbQ0FBQVISUkRcCh8BaS4uBjLy8uqfAT//v5e5PtJocmyMjIyxBjrGgMDA8JCCgsLsb6+7lMgaWlp4hzjGgSDbJD60k8KTUASEhJwcXGh0qG7uxttbW3CWshifFkhrlWnJGUgn0ooUw+dvE9OTtxWCNnWxsYGA9FYtpoqpLS0FIuLi6qUq6urwq5owjo/P2cg/xOI1WpFUVGRc5qKiorC2dkZHh4eEBcX59yKr5o6W5YHujRZVVRUgID4+/tjYWEBAQEBoplTX6ERlf4SUcIdkNraWtDBkiIiIgI1NTU4ODjA5uamuPf6+orOzk5xrYy9DMQDkPn5eZBdhYSEoKOjA+Xl5QgLC8Pl5SV6e3sxPDysWukOiDIee6rop6cncdhkIBo9j5f5VoEvNXXfpuZfc6cAA5HsvWAgDEQyBSTbDlcIA5FMAcm2wxXCQCRTQLLtcIVIBuQPGzQWH7k+0SkAAAAASUVORK5CYII= +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAADTUlEQVRoQ+2YSyi0YRTH/1bMxqWQGLeQZMJCzU5yiVlQsiCX5LJQZEVjY2GlFCWXci8NC7eUjLuSpVJCKcY1JTUjUaz4nKfvnW/emmnyNr6eOKem3t7mmfO8/997/uc84wfg4/PDIYkCfgxEEhJ/t8FA5OIBBsJAJFNAsu18qUIsFgsqKysRHx+Pq6srr4+Snp6O0dFRGAwGHB0dwWg0el3z27/wrUB2d3eRlZWFvr4+HB4eYnJy0ql3aGgoRkZGUFJSgsHBQTQ3N/92FuL5vxWIw+GA3W5HUlKSSmyTyYSJiQnodDoEBQUxEBd1vhXI29sbjo+PkZmZ6UyZk5OD7e1tzMzMYHx8XFxzhfwjoglIcnIyGhsbUVZWBrKe6+trISpZE0V7ezu6urpUVWGz2ZCYmIi8vDxER0cL+yJQ+/v7HoEoPSswMBBmsxnV1dUIDw/H7e2t6E09PT14f3//UVanCcjKygpIpLm5OQQHB6OhoQExMTFoaWlBf3+/sKjU1FTMzs7i5uYGra2teHl5wdbWlko8b0Cogurq6rC0tITn52dMTU0JAAQ8Pz8fTU1NGBoaYiB7e3vIzs52vp2xsbE4PT3F4+Mj9Hq98747y3JVzxuQsbEx1NfXCyDU/JWIjIzE3d0ddnZ2kJuby0CqqqowPT2tEmJtbQ0FBQVISUkRcCh8BaS4uBjLy8uqfAT//v5e5PtJocmyMjIyxBjrGgMDA8JCCgsLsb6+7lMgaWlp4hzjGgSDbJD60k8KTUASEhJwcXGh0qG7uxttbW3CWshifFkhrlWnJGUgn0ooUw+dvE9OTtxWCNnWxsYGA9FYtpoqpLS0FIuLi6qUq6urwq5owjo/P2cg/xOI1WpFUVGRc5qKiorC2dkZHh4eEBcX59yKr5o6W5YHujRZVVRUgID4+/tjYWEBAQEBoplTX6ERlf4SUcIdkNraWtDBkiIiIgI1NTU4ODjA5uamuPf6+orOzk5xrYy9DMQDkPn5eZBdhYSEoKOjA+Xl5QgLC8Pl5SV6e3sxPDysWukOiDIee6rop6cncdhkIBo9j5f5VoEvNXXfpuZfc6cAA5HsvWAgDEQyBSTbDlcIA5FMAcm2wxXCQCRTQLLtcIVIBuQPGzQWH7k+0SkAAAAASUVORK5CYII= to http://localhost:4200 +[2025-02-20 23:13:44] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:13:44] Access : info - match path: / +[2025-02-20 23:13:44] Directive : debug - Record-Access +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:13:44] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:13:44] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:14:19] Access : info - From 127.0.0.1:53142-GET / +[2025-02-20 23:14:19] Access : info - match path: / +[2025-02-20 23:14:19] Directive : debug - Record-Access +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:19] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:14:19] Access : info - From 127.0.0.1:53142-GET /@vite/client +[2025-02-20 23:14:19] Access : info - match path: / +[2025-02-20 23:14:19] Directive : debug - Record-Access +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:19] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:14:19] Access : info - From 127.0.0.1:53142-GET /styles.css +[2025-02-20 23:14:19] Access : info - match path: / +[2025-02-20 23:14:19] Directive : debug - Record-Access +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:19] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:14:19] Access : info - From 127.0.0.1:53142-GET /polyfills.js +[2025-02-20 23:14:19] Access : info - match path: / +[2025-02-20 23:14:19] Directive : debug - Record-Access +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:19] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:14:19] Access : info - From 127.0.0.1:53142-GET /main.js +[2025-02-20 23:14:19] Access : info - match path: / +[2025-02-20 23:14:19] Directive : debug - Record-Access +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:19] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:14:19] Access : info - From 127.0.0.1:53142-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:14:19] Access : info - match path: / +[2025-02-20 23:14:19] Directive : debug - Record-Access +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:19] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:14:19] Access : info - From 127.0.0.1:41546-GET /styles.css.map +[2025-02-20 23:14:19] Access : info - match path: / +[2025-02-20 23:14:19] Directive : debug - Record-Access +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:19] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:14:19] Access : info - From 127.0.0.1:42034-GET / +[2025-02-20 23:14:19] Access : info - match path: / +[2025-02-20 23:14:19] Directive : debug - Record-Access +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:19] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:53142-GET /@ng/component +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740064459811 to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:53142-GET /chunk-MU4MR7Q4.js +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/chunk-MU4MR7Q4.js to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:41586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:41524-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:41550-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:41560-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:41574-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:41586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:41524-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:41586-GET /app.component.css.map +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:53142-GET /@ng/component +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740064460171 to http://localhost:4200 +[2025-02-20 23:14:20] Access : info - From 127.0.0.1:41546-GET /login.component.css.map +[2025-02-20 23:14:20] Access : info - match path: / +[2025-02-20 23:14:20] Directive : debug - Record-Access +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:14:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:14:20] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:16:06] Access : info - From 127.0.0.1:53142-GET / +[2025-02-20 23:16:06] Access : info - match path: / +[2025-02-20 23:16:06] Directive : debug - Record-Access +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:06] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:16:06] Access : info - From 127.0.0.1:53142-GET /@vite/client +[2025-02-20 23:16:06] Access : info - match path: / +[2025-02-20 23:16:06] Directive : debug - Record-Access +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:06] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:16:06] Access : info - From 127.0.0.1:56242-GET /styles.css +[2025-02-20 23:16:06] Access : info - match path: / +[2025-02-20 23:16:06] Directive : debug - Record-Access +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:06] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:16:06] Access : info - From 127.0.0.1:53142-GET /polyfills.js +[2025-02-20 23:16:06] Access : info - match path: / +[2025-02-20 23:16:06] Directive : debug - Record-Access +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:06] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:16:06] Access : info - From 127.0.0.1:56242-GET /main.js +[2025-02-20 23:16:06] Access : info - match path: / +[2025-02-20 23:16:06] Directive : debug - Record-Access +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:06] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:16:06] Access : info - From 127.0.0.1:53142-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:16:06] Access : info - match path: / +[2025-02-20 23:16:06] Directive : debug - Record-Access +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:06] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:16:06] Access : info - From 127.0.0.1:41546-GET /styles.css.map +[2025-02-20 23:16:06] Access : info - match path: / +[2025-02-20 23:16:06] Directive : debug - Record-Access +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:06] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:56252-GET / +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:41524-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:41586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:41574-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:41560-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:41550-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:41586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:41546-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:41524-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:53142-GET /@ng/component +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740064567357 to http://localhost:4200 +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:53142-GET /chunk-Y2X4WZ2S.js +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/chunk-Y2X4WZ2S.js to http://localhost:4200 +[2025-02-20 23:16:07] Access : info - From 127.0.0.1:41546-GET /app.component.css.map +[2025-02-20 23:16:07] Access : info - match path: / +[2025-02-20 23:16:07] Directive : debug - Record-Access +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:07] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:16:08] Access : info - From 127.0.0.1:53142-GET /@ng/component +[2025-02-20 23:16:08] Access : info - match path: / +[2025-02-20 23:16:08] Directive : debug - Record-Access +[2025-02-20 23:16:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:08] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740064567766 to http://localhost:4200 +[2025-02-20 23:16:08] Access : info - From 127.0.0.1:41546-GET /login.component.css.map +[2025-02-20 23:16:08] Access : info - match path: / +[2025-02-20 23:16:08] Directive : debug - Record-Access +[2025-02-20 23:16:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:16:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:16:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:16:08] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:21:30] Access : info - From 127.0.0.1:57580-GET / +[2025-02-20 23:21:30] Access : info - match path: / +[2025-02-20 23:21:30] Directive : debug - Record-Access +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:30] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:21:30] Access : info - From 127.0.0.1:57580-GET /@vite/client +[2025-02-20 23:21:30] Access : info - match path: / +[2025-02-20 23:21:30] Directive : debug - Record-Access +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:30] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:21:30] Access : info - From 127.0.0.1:57592-GET /styles.css +[2025-02-20 23:21:30] Access : info - match path: / +[2025-02-20 23:21:30] Directive : debug - Record-Access +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:30] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:21:30] Access : info - From 127.0.0.1:57580-GET /polyfills.js +[2025-02-20 23:21:30] Access : info - match path: / +[2025-02-20 23:21:30] Directive : debug - Record-Access +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:30] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:21:30] Access : info - From 127.0.0.1:57592-GET /main.js +[2025-02-20 23:21:30] Access : info - match path: / +[2025-02-20 23:21:30] Directive : debug - Record-Access +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:30] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:21:30] Access : info - From 127.0.0.1:57592-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:21:30] Access : info - match path: / +[2025-02-20 23:21:30] Directive : debug - Record-Access +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57600-GET /styles.css.map +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57606-GET / +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57592-GET /@ng/component +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740064891421 to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57592-GET /chunk-H45MHXEC.js +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/chunk-H45MHXEC.js to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57600-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57608-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57624-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57628-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57622-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57634-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57600-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57608-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57622-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57600-GET /app.component.css.map +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:21:31] Access : info - From 127.0.0.1:57592-GET /@ng/component +[2025-02-20 23:21:31] Access : info - match path: / +[2025-02-20 23:21:31] Directive : debug - Record-Access +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:31] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740064891521 to http://localhost:4200 +[2025-02-20 23:21:32] Access : info - From 127.0.0.1:57592-GET /favicon.ico +[2025-02-20 23:21:32] Access : info - match path: / +[2025-02-20 23:21:32] Directive : debug - Record-Access +[2025-02-20 23:21:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:32] Proxy : info - proxy localhost:8088/favicon.ico to http://localhost:4200 +[2025-02-20 23:21:32] Access : info - From 127.0.0.1:57600-GET /login.component.css.map +[2025-02-20 23:21:32] Access : info - match path: / +[2025-02-20 23:21:32] Directive : debug - Record-Access +[2025-02-20 23:21:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:21:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:21:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:21:32] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:23:15] Access : info - From 127.0.0.1:57580-GET / +[2025-02-20 23:23:15] Access : info - match path: / +[2025-02-20 23:23:15] Directive : debug - Record-Access +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:15] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:23:15] Access : info - From 127.0.0.1:57580-GET /@vite/client +[2025-02-20 23:23:15] Access : info - match path: / +[2025-02-20 23:23:15] Directive : debug - Record-Access +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:15] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:23:15] Access : info - From 127.0.0.1:41778-GET /styles.css +[2025-02-20 23:23:15] Access : info - match path: / +[2025-02-20 23:23:15] Directive : debug - Record-Access +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:15] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:23:15] Access : info - From 127.0.0.1:41788-GET /polyfills.js +[2025-02-20 23:23:15] Access : info - match path: / +[2025-02-20 23:23:15] Directive : debug - Record-Access +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:15] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:23:15] Access : info - From 127.0.0.1:57580-GET /main.js +[2025-02-20 23:23:15] Access : info - match path: / +[2025-02-20 23:23:15] Directive : debug - Record-Access +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:15] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:23:15] Access : info - From 127.0.0.1:57580-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:23:15] Access : info - match path: / +[2025-02-20 23:23:15] Directive : debug - Record-Access +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:15] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:23:15] Access : info - From 127.0.0.1:57600-GET /styles.css.map +[2025-02-20 23:23:15] Access : info - match path: / +[2025-02-20 23:23:15] Directive : debug - Record-Access +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:15] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:15] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:41806-GET / +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57580-GET /@ng/component +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740064996574 to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57580-GET /chunk-KXU5Z27P.js +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/chunk-KXU5Z27P.js to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57600-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57628-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57634-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57608-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57622-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57624-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57600-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57628-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57608-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57580-GET /@ng/component +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740064996763 to http://localhost:4200 +[2025-02-20 23:23:16] Access : info - From 127.0.0.1:57622-GET /app.component.css.map +[2025-02-20 23:23:16] Access : info - match path: / +[2025-02-20 23:23:16] Directive : debug - Record-Access +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:16] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:16] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:23:17] Access : info - From 127.0.0.1:57628-GET /login.component.css.map +[2025-02-20 23:23:17] Access : info - match path: / +[2025-02-20 23:23:17] Directive : debug - Record-Access +[2025-02-20 23:23:17] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:17] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:17] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:17] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:23:29] Access : info - From 127.0.0.1:57580-GET /@ng/component +[2025-02-20 23:23:29] Access : info - match path: / +[2025-02-20 23:23:29] Directive : debug - Record-Access +[2025-02-20 23:23:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:29] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740065009640 to http://localhost:4200 +[2025-02-20 23:23:29] Access : info - From 127.0.0.1:57628-GET /login.component.css.map +[2025-02-20 23:23:29] Access : info - match path: / +[2025-02-20 23:23:29] Directive : debug - Record-Access +[2025-02-20 23:23:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:29] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:23:37] Access : info - From 127.0.0.1:57580-GET / +[2025-02-20 23:23:37] Access : info - match path: / +[2025-02-20 23:23:37] Directive : debug - Record-Access +[2025-02-20 23:23:37] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:37] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:37] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:37] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:23:38] Access : info - From 127.0.0.1:57580-GET /@vite/client +[2025-02-20 23:23:38] Access : info - match path: / +[2025-02-20 23:23:38] Directive : debug - Record-Access +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:38] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:23:38] Access : info - From 127.0.0.1:41778-GET /styles.css +[2025-02-20 23:23:38] Access : info - match path: / +[2025-02-20 23:23:38] Directive : debug - Record-Access +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:38] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:23:38] Access : info - From 127.0.0.1:41788-GET /polyfills.js +[2025-02-20 23:23:38] Access : info - match path: / +[2025-02-20 23:23:38] Directive : debug - Record-Access +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:38] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:23:38] Access : info - From 127.0.0.1:57580-GET /main.js +[2025-02-20 23:23:38] Access : info - match path: / +[2025-02-20 23:23:38] Directive : debug - Record-Access +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:38] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:23:38] Access : info - From 127.0.0.1:57580-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:23:38] Access : info - match path: / +[2025-02-20 23:23:38] Directive : debug - Record-Access +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:38] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:23:38] Access : info - From 127.0.0.1:57628-GET /styles.css.map +[2025-02-20 23:23:38] Access : info - match path: / +[2025-02-20 23:23:38] Directive : debug - Record-Access +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:38] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:23:38] Access : info - From 127.0.0.1:36218-GET / +[2025-02-20 23:23:38] Access : info - match path: / +[2025-02-20 23:23:38] Directive : debug - Record-Access +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:38] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:23:38] Access : info - From 127.0.0.1:57580-GET /@ng/component +[2025-02-20 23:23:38] Access : info - match path: / +[2025-02-20 23:23:38] Directive : debug - Record-Access +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:38] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740065018879 to http://localhost:4200 +[2025-02-20 23:23:38] Access : info - From 127.0.0.1:57580-GET /chunk-UTAQB2RE.js +[2025-02-20 23:23:38] Access : info - match path: / +[2025-02-20 23:23:38] Directive : debug - Record-Access +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:38] Proxy : info - proxy localhost:8088/chunk-UTAQB2RE.js to http://localhost:4200 +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57628-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57600-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57634-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57624-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57622-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57608-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57628-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57600-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57624-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57622-GET /app.component.css.map +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57580-GET /@ng/component +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740065019006 to http://localhost:4200 +[2025-02-20 23:23:39] Access : info - From 127.0.0.1:57628-GET /login.component.css.map +[2025-02-20 23:23:39] Access : info - match path: / +[2025-02-20 23:23:39] Directive : debug - Record-Access +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:23:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:23:39] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:24:06] Access : info - From 127.0.0.1:57580-GET /@ng/component +[2025-02-20 23:24:06] Access : info - match path: / +[2025-02-20 23:24:06] Directive : debug - Record-Access +[2025-02-20 23:24:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:24:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:24:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:24:06] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740065046960 to http://localhost:4200 +[2025-02-20 23:24:07] Access : info - From 127.0.0.1:57628-GET /login.component.css.map +[2025-02-20 23:24:07] Access : info - match path: / +[2025-02-20 23:24:07] Directive : debug - Record-Access +[2025-02-20 23:24:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:24:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:24:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:24:07] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:24:27] Access : info - From 127.0.0.1:57580-GET /@ng/component +[2025-02-20 23:24:27] Access : info - match path: / +[2025-02-20 23:24:27] Directive : debug - Record-Access +[2025-02-20 23:24:27] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:24:27] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:24:27] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:24:27] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740065067448 to http://localhost:4200 +[2025-02-20 23:24:27] Access : info - From 127.0.0.1:57628-GET /login.component.css.map +[2025-02-20 23:24:27] Access : info - match path: / +[2025-02-20 23:24:27] Directive : debug - Record-Access +[2025-02-20 23:24:27] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:24:27] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:24:27] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:24:27] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:25:43] Access : info - From 127.0.0.1:57628-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:25:43] Access : info - match path: / +[2025-02-20 23:25:43] Directive : debug - Record-Access +[2025-02-20 23:25:43] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:25:43] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:25:43] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:25:43] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:28:13] Access : info - From 127.0.0.1:60544-GET / +[2025-02-20 23:28:13] Access : info - match path: / +[2025-02-20 23:28:13] Directive : debug - Record-Access +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:13] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:28:13] Access : info - From 127.0.0.1:60544-GET /@vite/client +[2025-02-20 23:28:13] Access : info - match path: / +[2025-02-20 23:28:13] Directive : debug - Record-Access +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:13] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:28:13] Access : info - From 127.0.0.1:60544-GET /styles.css +[2025-02-20 23:28:13] Access : info - match path: / +[2025-02-20 23:28:13] Directive : debug - Record-Access +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:13] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:28:13] Access : info - From 127.0.0.1:60544-GET /polyfills.js +[2025-02-20 23:28:13] Access : info - match path: / +[2025-02-20 23:28:13] Directive : debug - Record-Access +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:13] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:28:13] Access : info - From 127.0.0.1:60548-GET /main.js +[2025-02-20 23:28:13] Access : info - match path: / +[2025-02-20 23:28:13] Directive : debug - Record-Access +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:13] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:28:13] Access : info - From 127.0.0.1:60548-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:28:13] Access : info - match path: / +[2025-02-20 23:28:13] Directive : debug - Record-Access +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:28:13] Access : info - From 127.0.0.1:60554-GET /styles.css.map +[2025-02-20 23:28:13] Access : info - match path: / +[2025-02-20 23:28:13] Directive : debug - Record-Access +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:13] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60560-GET / +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60548-GET /@ng/component +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740065294357 to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60548-GET /chunk-BOXKKXJD.js +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/chunk-BOXKKXJD.js to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60554-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60576-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60594-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60596-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60602-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60554-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60576-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60586-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60554-GET /app.component.css.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60548-GET /@ng/component +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740065294507 to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60576-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:28:14] Access : info - From 127.0.0.1:60596-GET /login.component.css.map +[2025-02-20 23:28:14] Access : info - match path: / +[2025-02-20 23:28:14] Directive : debug - Record-Access +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:14] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:28:52] Access : info - From 127.0.0.1:60548-GET /@ng/component +[2025-02-20 23:28:52] Access : info - match path: / +[2025-02-20 23:28:52] Directive : debug - Record-Access +[2025-02-20 23:28:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:52] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740065332029 to http://localhost:4200 +[2025-02-20 23:28:52] Access : info - From 127.0.0.1:60596-GET /login.component.css.map +[2025-02-20 23:28:52] Access : info - match path: / +[2025-02-20 23:28:52] Directive : debug - Record-Access +[2025-02-20 23:28:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:28:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:28:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:28:52] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:32:28] Access : info - From 127.0.0.1:37848-GET / +[2025-02-20 23:32:28] Access : info - match path: / +[2025-02-20 23:32:28] Directive : debug - Record-Access +[2025-02-20 23:32:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:28] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:32:29] Access : info - From 127.0.0.1:37848-GET /@vite/client +[2025-02-20 23:32:29] Access : info - match path: / +[2025-02-20 23:32:29] Directive : debug - Record-Access +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:29] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:32:29] Access : info - From 127.0.0.1:44486-GET /styles.css +[2025-02-20 23:32:29] Access : info - match path: / +[2025-02-20 23:32:29] Directive : debug - Record-Access +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:29] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:32:29] Access : info - From 127.0.0.1:44490-GET /polyfills.js +[2025-02-20 23:32:29] Access : info - match path: / +[2025-02-20 23:32:29] Directive : debug - Record-Access +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:29] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:32:29] Access : info - From 127.0.0.1:44486-GET /main.js +[2025-02-20 23:32:29] Access : info - match path: / +[2025-02-20 23:32:29] Directive : debug - Record-Access +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:29] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:32:29] Access : info - From 127.0.0.1:44486-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:32:29] Access : info - match path: / +[2025-02-20 23:32:29] Directive : debug - Record-Access +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:32:29] Access : info - From 127.0.0.1:44502-GET /styles.css.map +[2025-02-20 23:32:29] Access : info - match path: / +[2025-02-20 23:32:29] Directive : debug - Record-Access +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:29] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44510-GET / +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44486-GET /@ng/component +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740065550377 to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44486-GET /chunk-METKQRTR.js +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/chunk-METKQRTR.js to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44502-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44514-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44522-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44528-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44540-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44542-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44502-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44514-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44522-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44502-GET /app.component.css.map +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44486-GET /@ng/component +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740065550626 to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44514-GET /login.component.css.map +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:32:30] Access : info - From 127.0.0.1:44540-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:32:30] Access : info - match path: / +[2025-02-20 23:32:30] Directive : debug - Record-Access +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:32:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:32:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:34:12] Access : info - From 127.0.0.1:44486-GET / +[2025-02-20 23:34:12] Access : info - match path: / +[2025-02-20 23:34:12] Directive : debug - Record-Access +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:12] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:34:12] Access : info - From 127.0.0.1:44486-GET /@vite/client +[2025-02-20 23:34:12] Access : info - match path: / +[2025-02-20 23:34:12] Directive : debug - Record-Access +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:12] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:34:12] Access : info - From 127.0.0.1:44486-GET /polyfills.js +[2025-02-20 23:34:12] Access : info - match path: / +[2025-02-20 23:34:12] Directive : debug - Record-Access +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:12] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:34:12] Access : info - From 127.0.0.1:44486-GET /main.js +[2025-02-20 23:34:12] Access : info - match path: / +[2025-02-20 23:34:12] Directive : debug - Record-Access +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:12] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:34:12] Access : info - From 127.0.0.1:44486-GET /styles.css +[2025-02-20 23:34:12] Access : info - match path: / +[2025-02-20 23:34:12] Directive : debug - Record-Access +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:12] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:34:12] Access : info - From 127.0.0.1:44486-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:34:12] Access : info - match path: / +[2025-02-20 23:34:12] Directive : debug - Record-Access +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:12] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:34:12] Access : info - From 127.0.0.1:44502-GET /styles.css.map +[2025-02-20 23:34:12] Access : info - match path: / +[2025-02-20 23:34:12] Directive : debug - Record-Access +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:12] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:59188-GET / +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44486-GET /@ng/component +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740065653270 to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44486-GET /chunk-NVUQWX27.js +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/chunk-NVUQWX27.js to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44542-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44528-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44486-GET /@ng/component +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740065653508 to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44502-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44540-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44522-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44514-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44542-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44528-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44540-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44486-GET /favicon.ico +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/favicon.ico to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44502-GET /app.component.css.map +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44514-GET /login.component.css.map +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:34:13] Access : info - From 127.0.0.1:44542-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:34:13] Access : info - match path: / +[2025-02-20 23:34:13] Directive : debug - Record-Access +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:34:19] Access : info - From 127.0.0.1:37848-GET / +[2025-02-20 23:34:19] Access : info - match path: / +[2025-02-20 23:34:19] Directive : debug - Record-Access +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:19] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:34:19] Access : info - From 127.0.0.1:44490-GET /@vite/client +[2025-02-20 23:34:19] Access : info - match path: / +[2025-02-20 23:34:19] Directive : debug - Record-Access +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:19] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:34:19] Access : info - From 127.0.0.1:44490-GET /styles.css +[2025-02-20 23:34:19] Access : info - match path: / +[2025-02-20 23:34:19] Directive : debug - Record-Access +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:19] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:34:19] Access : info - From 127.0.0.1:44490-GET /polyfills.js +[2025-02-20 23:34:19] Access : info - match path: / +[2025-02-20 23:34:19] Directive : debug - Record-Access +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:19] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:34:19] Access : info - From 127.0.0.1:44490-GET /main.js +[2025-02-20 23:34:19] Access : info - match path: / +[2025-02-20 23:34:19] Directive : debug - Record-Access +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:19] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:34:19] Access : info - From 127.0.0.1:44490-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:34:19] Access : info - match path: / +[2025-02-20 23:34:19] Directive : debug - Record-Access +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:19] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44542-GET /styles.css.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:60802-GET / +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44490-GET /@ng/component +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740065660293 to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44490-GET /chunk-MURF5BAP.js +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/chunk-MURF5BAP.js to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44542-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44502-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44514-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44528-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44540-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44522-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44542-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44514-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44502-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44522-GET /app.component.css.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44490-GET /@ng/component +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740065660456 to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44542-GET /login.component.css.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:34:20] Access : info - From 127.0.0.1:44542-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:34:20] Access : info - match path: / +[2025-02-20 23:34:20] Directive : debug - Record-Access +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:34:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:34:37] Access : info - From 127.0.0.1:44490-POST /api/login +[2025-02-20 23:34:37] Access : info - match path: /api/ +[2025-02-20 23:34:37] Directive : debug - Record-Access +[2025-02-20 23:34:37] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:34:37] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:34:37] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:36:15] Access : info - From 127.0.0.1:44490-POST /api/login +[2025-02-20 23:36:15] Access : info - match path: /api/ +[2025-02-20 23:36:15] Directive : debug - Record-Access +[2025-02-20 23:36:15] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:36:15] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:36:15] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:36:15] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-20 23:36:15] Route : debug - method not match +[2025-02-20 23:36:15] Route : debug - matching route: POST /login with GET /about +[2025-02-20 23:36:15] Route : debug - method not match +[2025-02-20 23:36:15] Route : debug - matching route: POST /login with POST /config +[2025-02-20 23:36:15] Route : debug - matching route: POST /login with POST /login +[2025-02-20 23:37:12] Access : info - From 127.0.0.1:44490-POST /api/login +[2025-02-20 23:37:12] Access : info - match path: /api/ +[2025-02-20 23:37:12] Directive : debug - Record-Access +[2025-02-20 23:37:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:37:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:37:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:37:12] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-20 23:37:12] Route : debug - method not match +[2025-02-20 23:37:12] Route : debug - matching route: POST /login with GET /about +[2025-02-20 23:37:12] Route : debug - method not match +[2025-02-20 23:37:12] Route : debug - matching route: POST /login with POST /config +[2025-02-20 23:37:12] Route : debug - matching route: POST /login with POST /login +[2025-02-20 23:38:25] Access : info - From 127.0.0.1:44490-POST /api/login +[2025-02-20 23:38:25] Access : info - match path: /api/ +[2025-02-20 23:38:25] Directive : debug - Record-Access +[2025-02-20 23:38:25] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:38:25] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:38:25] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:38:25] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-20 23:38:25] Route : debug - method not match +[2025-02-20 23:38:25] Route : debug - matching route: POST /login with GET /about +[2025-02-20 23:38:25] Route : debug - method not match +[2025-02-20 23:38:25] Route : debug - matching route: POST /login with POST /config +[2025-02-20 23:38:25] Route : debug - matching route: POST /login with POST /login +[2025-02-20 23:39:02] Access : info - From 127.0.0.1:44490-POST /api/login +[2025-02-20 23:39:02] Access : info - match path: /api/ +[2025-02-20 23:39:02] Directive : debug - Record-Access +[2025-02-20 23:39:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:39:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:39:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:39:02] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-20 23:39:02] Route : debug - method not match +[2025-02-20 23:39:02] Route : debug - matching route: POST /login with GET /about +[2025-02-20 23:39:02] Route : debug - method not match +[2025-02-20 23:39:02] Route : debug - matching route: POST /login with POST /config +[2025-02-20 23:39:02] Route : debug - matching route: POST /login with POST /login +[2025-02-20 23:40:36] Access : info - From 127.0.0.1:44490-POST /api/login +[2025-02-20 23:40:36] Access : info - match path: /api/ +[2025-02-20 23:40:36] Directive : debug - Record-Access +[2025-02-20 23:40:36] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:40:36] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:40:36] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:40:36] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-20 23:40:36] Route : debug - method not match +[2025-02-20 23:40:36] Route : debug - matching route: POST /login with GET /about +[2025-02-20 23:40:36] Route : debug - method not match +[2025-02-20 23:40:36] Route : debug - matching route: POST /login with POST /config +[2025-02-20 23:40:36] Route : debug - matching route: POST /login with POST /login +[2025-02-20 23:46:54] Access : info - From 127.0.0.1:44490-POST /api/login +[2025-02-20 23:46:54] Access : info - match path: /api/ +[2025-02-20 23:46:54] Directive : debug - Record-Access +[2025-02-20 23:46:54] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:46:54] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:46:54] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:46:54] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-20 23:46:54] Route : debug - method not match +[2025-02-20 23:46:54] Route : debug - matching route: POST /login with GET /about +[2025-02-20 23:46:54] Route : debug - method not match +[2025-02-20 23:46:54] Route : debug - matching route: POST /login with POST /config +[2025-02-20 23:46:54] Route : debug - matching route: POST /login with POST /login +[2025-02-20 23:48:26] Server : info - Load config success +[2025-02-20 23:48:26] Server : info - start gohttpd +[2025-02-20 23:48:26] ServerMux : debug - NewServeMux +[2025-02-20 23:48:26] ServerMux : debug - add directive: Record-Access +[2025-02-20 23:48:26] ServerMux : debug - add directive: Set-Header +[2025-02-20 23:48:26] ServerMux : debug - add directive: Set-Header +[2025-02-20 23:48:26] ServerMux : debug - add directive: Set-Header +[2025-02-20 23:48:26] ServerMux : debug - NewServeMux +[2025-02-20 23:48:26] ServerMux : debug - add directive: Record-Access +[2025-02-20 23:48:26] ServerMux : debug - add directive: Gzip_Response +[2025-02-20 23:48:26] Listener : debug - listen on :3000 +[2025-02-20 23:48:26] Listener : debug - listen on :8088 +[2025-02-20 23:48:26] Server : info - gohttpd start success +[2025-02-20 23:48:33] Access : info - From 127.0.0.1:36354-GET / +[2025-02-20 23:48:33] Access : info - match path: / +[2025-02-20 23:48:33] Directive : debug - Record-Access +[2025-02-20 23:48:33] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:33] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:33] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:33] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:48:33] Access : info - From 127.0.0.1:36356-GET / +[2025-02-20 23:48:33] Access : info - match path: / +[2025-02-20 23:48:33] Directive : debug - Record-Access +[2025-02-20 23:48:33] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:33] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:33] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:33] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:48:33] Access : info - From 127.0.0.1:36366-POST /api/login +[2025-02-20 23:48:33] Access : info - match path: /api/ +[2025-02-20 23:48:33] Directive : debug - Record-Access +[2025-02-20 23:48:33] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:33] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:33] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:34] Access : info - From 127.0.0.1:36356-GET /@vite/client +[2025-02-20 23:48:34] Access : info - match path: / +[2025-02-20 23:48:34] Directive : debug - Record-Access +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:34] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:48:34] Access : info - From 127.0.0.1:36366-GET /styles.css +[2025-02-20 23:48:34] Access : info - match path: / +[2025-02-20 23:48:34] Directive : debug - Record-Access +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:34] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:48:34] Access : info - From 127.0.0.1:36368-GET /polyfills.js +[2025-02-20 23:48:34] Access : info - match path: / +[2025-02-20 23:48:34] Directive : debug - Record-Access +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:34] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:48:34] Access : info - From 127.0.0.1:36356-GET /main.js +[2025-02-20 23:48:34] Access : info - match path: / +[2025-02-20 23:48:34] Directive : debug - Record-Access +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:34] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:48:34] Access : info - From 127.0.0.1:36368-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:48:34] Access : info - match path: / +[2025-02-20 23:48:34] Directive : debug - Record-Access +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:34] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:48:34] Access : info - From 127.0.0.1:36380-GET /styles.css.map +[2025-02-20 23:48:34] Access : info - match path: / +[2025-02-20 23:48:34] Directive : debug - Record-Access +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:34] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:48:34] Access : info - From 127.0.0.1:36396-GET / +[2025-02-20 23:48:34] Access : info - match path: / +[2025-02-20 23:48:34] Directive : debug - Record-Access +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:34] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36380-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36412-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36380-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36412-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36380-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36418-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36420-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36432-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36436-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36368-GET /@ng/component +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740066514969 to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36368-GET /chunk-MURF5BAP.js +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/chunk-MURF5BAP.js to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36380-GET /app.component.css.map +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36368-GET /favicon.ico +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/favicon.ico to http://localhost:4200 +[2025-02-20 23:48:35] Access : info - From 127.0.0.1:36368-GET /@ng/component +[2025-02-20 23:48:35] Access : info - match path: / +[2025-02-20 23:48:35] Directive : debug - Record-Access +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:35] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740066515535 to http://localhost:4200 +[2025-02-20 23:48:36] Access : info - From 127.0.0.1:36436-GET /login.component.css.map +[2025-02-20 23:48:36] Access : info - match path: / +[2025-02-20 23:48:36] Directive : debug - Record-Access +[2025-02-20 23:48:36] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:36] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:36] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:36] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:48:53] Access : info - From 127.0.0.1:36368-POST /api/login +[2025-02-20 23:48:53] Access : info - match path: /api/ +[2025-02-20 23:48:53] Directive : debug - Record-Access +[2025-02-20 23:48:53] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:48:53] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:48:53] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:48:53] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-20 23:48:53] Route : debug - method not match +[2025-02-20 23:48:53] Route : debug - matching route: POST /login with GET /about +[2025-02-20 23:48:53] Route : debug - method not match +[2025-02-20 23:48:53] Route : debug - matching route: POST /login with POST /config +[2025-02-20 23:48:53] Route : debug - matching route: POST /login with POST /login +[2025-02-20 23:55:26] Server : info - Load config success +[2025-02-20 23:55:26] Server : info - start gohttpd +[2025-02-20 23:55:26] ServerMux : debug - NewServeMux +[2025-02-20 23:55:26] ServerMux : debug - add directive: Record-Access +[2025-02-20 23:55:26] ServerMux : debug - add directive: Set-Header +[2025-02-20 23:55:26] ServerMux : debug - add directive: Set-Header +[2025-02-20 23:55:26] ServerMux : debug - add directive: Set-Header +[2025-02-20 23:55:26] ServerMux : debug - NewServeMux +[2025-02-20 23:55:26] ServerMux : debug - add directive: Record-Access +[2025-02-20 23:55:26] ServerMux : debug - add directive: Gzip_Response +[2025-02-20 23:55:26] Listener : debug - listen on :8088 +[2025-02-20 23:55:26] Listener : debug - listen on :3000 +[2025-02-20 23:55:26] Server : info - gohttpd start success +[2025-02-20 23:55:30] Access : info - From 127.0.0.1:58384-POST /api/login +[2025-02-20 23:55:30] Access : info - match path: /api/ +[2025-02-20 23:55:30] Directive : debug - Record-Access +[2025-02-20 23:55:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:31] Access : info - From 127.0.0.1:58400-GET / +[2025-02-20 23:55:31] Access : info - match path: / +[2025-02-20 23:55:31] Directive : debug - Record-Access +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:31] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:55:31] Access : info - From 127.0.0.1:58384-GET / +[2025-02-20 23:55:31] Access : info - match path: / +[2025-02-20 23:55:31] Directive : debug - Record-Access +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:31] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:55:31] Access : info - From 127.0.0.1:58384-GET /@vite/client +[2025-02-20 23:55:31] Access : info - match path: / +[2025-02-20 23:55:31] Directive : debug - Record-Access +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:31] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:55:31] Access : info - From 127.0.0.1:58404-GET /styles.css +[2025-02-20 23:55:31] Access : info - match path: / +[2025-02-20 23:55:31] Directive : debug - Record-Access +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:31] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:55:31] Access : info - From 127.0.0.1:58384-GET /polyfills.js +[2025-02-20 23:55:31] Access : info - match path: / +[2025-02-20 23:55:31] Directive : debug - Record-Access +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:31] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:55:31] Access : info - From 127.0.0.1:58404-GET /main.js +[2025-02-20 23:55:31] Access : info - match path: / +[2025-02-20 23:55:31] Directive : debug - Record-Access +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:31] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58404-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58418-GET /styles.css.map +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58424-GET / +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58404-GET /@ng/component +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740066932519 to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58404-GET /chunk-MURF5BAP.js +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/chunk-MURF5BAP.js to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58418-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58432-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58456-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58446-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58462-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58476-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58418-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58432-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58462-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58418-GET /app.component.css.map +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58404-GET /@ng/component +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740066932680 to http://localhost:4200 +[2025-02-20 23:55:32] Access : info - From 127.0.0.1:58418-GET /login.component.css.map +[2025-02-20 23:55:32] Access : info - match path: / +[2025-02-20 23:55:32] Directive : debug - Record-Access +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:32] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-20 23:55:48] Access : info - From 127.0.0.1:58404-POST /api/login +[2025-02-20 23:55:48] Access : info - match path: /api/ +[2025-02-20 23:55:48] Directive : debug - Record-Access +[2025-02-20 23:55:48] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:55:48] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:55:48] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:55:48] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-20 23:55:48] Route : debug - method not match +[2025-02-20 23:55:48] Route : debug - matching route: POST /login with GET /about +[2025-02-20 23:55:48] Route : debug - method not match +[2025-02-20 23:55:48] Route : debug - matching route: POST /login with POST /config +[2025-02-20 23:55:48] Route : debug - matching route: POST /login with POST /login +[2025-02-20 23:57:22] Access : info - From 127.0.0.1:58384-POST /api/login +[2025-02-20 23:57:22] Access : info - match path: /api/ +[2025-02-20 23:57:22] Directive : debug - Record-Access +[2025-02-20 23:57:22] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:57:22] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:57:22] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:57:22] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-20 23:57:22] Route : debug - method not match +[2025-02-20 23:57:22] Route : debug - matching route: POST /login with GET /about +[2025-02-20 23:57:22] Route : debug - method not match +[2025-02-20 23:57:22] Route : debug - matching route: POST /login with POST /config +[2025-02-20 23:57:22] Route : debug - matching route: POST /login with POST /login +[2025-02-20 23:57:26] Access : info - From 127.0.0.1:53800-POST /api/login +[2025-02-20 23:57:26] Access : info - match path: /api/ +[2025-02-20 23:57:26] Directive : debug - Record-Access +[2025-02-20 23:57:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:57:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:57:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:57:26] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-20 23:57:26] Route : debug - method not match +[2025-02-20 23:57:26] Route : debug - matching route: POST /login with GET /about +[2025-02-20 23:57:26] Route : debug - method not match +[2025-02-20 23:57:26] Route : debug - matching route: POST /login with POST /config +[2025-02-20 23:57:26] Route : debug - matching route: POST /login with POST /login +[2025-02-20 23:59:55] Access : info - From 127.0.0.1:58426-GET / +[2025-02-20 23:59:55] Access : info - match path: / +[2025-02-20 23:59:55] Directive : debug - Record-Access +[2025-02-20 23:59:55] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:55] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:55] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:55] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58426-GET /@vite/client +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58428-GET /styles.css +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58436-GET /polyfills.js +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58426-GET /main.js +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58428-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58452-GET /styles.css.map +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58456-GET / +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58452-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58470-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58452-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58480-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58470-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-20 23:59:56] Access : info - match path: / +[2025-02-20 23:59:56] Directive : debug - Record-Access +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:56] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58508-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-20 23:59:57] Access : info - match path: / +[2025-02-20 23:59:57] Directive : debug - Record-Access +[2025-02-20 23:59:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-20 23:59:56] Access : info - From 127.0.0.1:58492-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-20 23:59:57] Access : info - match path: / +[2025-02-20 23:59:57] Directive : debug - Record-Access +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:57] Access : info - From 127.0.0.1:58452-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-20 23:59:57] Access : info - match path: / +[2025-02-20 23:59:57] Directive : debug - Record-Access +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-20 23:59:57] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-20 23:59:57] Access : info - From 127.0.0.1:58436-GET /@ng/component +[2025-02-20 23:59:57] Access : info - match path: / +[2025-02-20 23:59:57] Directive : debug - Record-Access +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:57] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740067196802 to http://localhost:4200 +[2025-02-20 23:59:57] Access : info - From 127.0.0.1:58428-GET /chunk-NGA4IUL7.js +[2025-02-20 23:59:57] Access : info - match path: / +[2025-02-20 23:59:57] Directive : debug - Record-Access +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:57] Proxy : info - proxy localhost:8088/chunk-NGA4IUL7.js to http://localhost:4200 +[2025-02-20 23:59:57] Access : info - From 127.0.0.1:58508-GET /app.component.css.map +[2025-02-20 23:59:57] Access : info - match path: / +[2025-02-20 23:59:57] Directive : debug - Record-Access +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:57] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-20 23:59:57] Access : info - From 127.0.0.1:58428-GET /favicon.ico +[2025-02-20 23:59:57] Access : info - match path: / +[2025-02-20 23:59:57] Directive : debug - Record-Access +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:57] Proxy : info - proxy localhost:8088/favicon.ico to http://localhost:4200 +[2025-02-20 23:59:57] Access : info - From 127.0.0.1:58436-GET /@ng/component +[2025-02-20 23:59:57] Access : info - match path: / +[2025-02-20 23:59:57] Directive : debug - Record-Access +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:57] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:57] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740067197644 to http://localhost:4200 +[2025-02-20 23:59:58] Access : info - From 127.0.0.1:58508-GET /login.component.css.map +[2025-02-20 23:59:58] Access : info - match path: / +[2025-02-20 23:59:58] Directive : debug - Record-Access +[2025-02-20 23:59:58] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-20 23:59:58] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-20 23:59:58] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-20 23:59:58] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:00:09] Server : info - Load config success +[2025-02-21 00:00:09] Server : info - start gohttpd +[2025-02-21 00:00:09] ServerMux : debug - NewServeMux +[2025-02-21 00:00:09] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:00:09] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:00:09] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:00:09] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:00:09] ServerMux : debug - NewServeMux +[2025-02-21 00:00:09] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:00:09] ServerMux : debug - add directive: Gzip_Response +[2025-02-21 00:00:09] Listener : debug - listen on :8088 +[2025-02-21 00:00:09] Listener : debug - listen on :3000 +[2025-02-21 00:00:09] Server : info - gohttpd start success +[2025-02-21 00:00:10] Access : info - From 127.0.0.1:44690-GET / +[2025-02-21 00:00:10] Access : info - match path: / +[2025-02-21 00:00:10] Directive : debug - Record-Access +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:10] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:00:10] Access : info - From 127.0.0.1:44706-GET / +[2025-02-21 00:00:10] Access : info - match path: / +[2025-02-21 00:00:10] Directive : debug - Record-Access +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:10] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:00:10] Access : info - From 127.0.0.1:44706-GET /@vite/client +[2025-02-21 00:00:10] Access : info - match path: / +[2025-02-21 00:00:10] Directive : debug - Record-Access +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:10] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:00:10] Access : info - From 127.0.0.1:44706-GET /styles.css +[2025-02-21 00:00:10] Access : info - match path: / +[2025-02-21 00:00:10] Directive : debug - Record-Access +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:10] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:00:10] Access : info - From 127.0.0.1:44706-GET /polyfills.js +[2025-02-21 00:00:10] Access : info - match path: / +[2025-02-21 00:00:10] Directive : debug - Record-Access +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:10] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:00:10] Access : info - From 127.0.0.1:44706-GET /main.js +[2025-02-21 00:00:10] Access : info - match path: / +[2025-02-21 00:00:10] Directive : debug - Record-Access +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:10] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:00:10] Access : info - From 127.0.0.1:44706-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:00:10] Access : info - match path: / +[2025-02-21 00:00:10] Directive : debug - Record-Access +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:10] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:00:10] Access : info - From 127.0.0.1:44712-GET /styles.css.map +[2025-02-21 00:00:10] Access : info - match path: / +[2025-02-21 00:00:10] Directive : debug - Record-Access +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:10] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:10] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44728-GET / +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44706-GET /@ng/component +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740067211241 to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44706-GET /chunk-NGA4IUL7.js +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/chunk-NGA4IUL7.js to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44712-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44734-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44746-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44748-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44750-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44712-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44756-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44734-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44746-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44734-GET /app.component.css.map +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44706-GET /@ng/component +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740067211330 to http://localhost:4200 +[2025-02-21 00:00:11] Access : info - From 127.0.0.1:44750-GET /login.component.css.map +[2025-02-21 00:00:11] Access : info - match path: / +[2025-02-21 00:00:11] Directive : debug - Record-Access +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:00:11] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:00:34] Access : info - From 127.0.0.1:44706-POST /api/login +[2025-02-21 00:00:34] Access : info - match path: /api/ +[2025-02-21 00:00:34] Directive : debug - Record-Access +[2025-02-21 00:00:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:00:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:00:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:29] Access : info - From 127.0.0.1:59282-GET / +[2025-02-21 00:06:29] Access : info - match path: / +[2025-02-21 00:06:29] Directive : debug - Record-Access +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:29] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:06:29] Access : info - From 127.0.0.1:59282-GET /@vite/client +[2025-02-21 00:06:29] Access : info - match path: / +[2025-02-21 00:06:29] Directive : debug - Record-Access +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:29] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:06:29] Access : info - From 127.0.0.1:59296-GET /styles.css +[2025-02-21 00:06:29] Access : info - match path: / +[2025-02-21 00:06:29] Directive : debug - Record-Access +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:29] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:06:29] Access : info - From 127.0.0.1:59310-GET /polyfills.js +[2025-02-21 00:06:29] Access : info - match path: / +[2025-02-21 00:06:29] Directive : debug - Record-Access +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:29] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:06:29] Access : info - From 127.0.0.1:59296-GET /main.js +[2025-02-21 00:06:29] Access : info - match path: / +[2025-02-21 00:06:29] Directive : debug - Record-Access +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:29] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:06:29] Access : info - From 127.0.0.1:59296-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:06:29] Access : info - match path: / +[2025-02-21 00:06:29] Directive : debug - Record-Access +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:29] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:06:29] Access : info - From 127.0.0.1:59322-GET /styles.css.map +[2025-02-21 00:06:29] Access : info - match path: / +[2025-02-21 00:06:29] Directive : debug - Record-Access +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:29] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:29] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59324-GET / +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59322-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59330-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59322-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59332-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59350-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59346-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59356-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59296-GET /@ng/component +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740067590527 to http://localhost:4200 +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59310-GET /chunk-AX5V5D76.js +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59330-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59322-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:06:30] Access : info - From 127.0.0.1:59356-GET /app.component.css.map +[2025-02-21 00:06:30] Access : info - match path: / +[2025-02-21 00:06:30] Directive : debug - Record-Access +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:30] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:30] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:06:31] Access : info - From 127.0.0.1:59310-GET /@ng/component +[2025-02-21 00:06:31] Access : info - match path: / +[2025-02-21 00:06:31] Directive : debug - Record-Access +[2025-02-21 00:06:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:31] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740067590855 to http://localhost:4200 +[2025-02-21 00:06:31] Access : info - From 127.0.0.1:59356-GET /login.component.css.map +[2025-02-21 00:06:31] Access : info - match path: / +[2025-02-21 00:06:31] Directive : debug - Record-Access +[2025-02-21 00:06:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:31] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:06:31] Access : info - From 127.0.0.1:59310-GET /favicon.ico +[2025-02-21 00:06:31] Access : info - match path: / +[2025-02-21 00:06:31] Directive : debug - Record-Access +[2025-02-21 00:06:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:31] Proxy : info - proxy localhost:8088/favicon.ico to http://localhost:4200 +[2025-02-21 00:06:58] Access : info - From 127.0.0.1:59296-POST /api/login +[2025-02-21 00:06:58] Access : info - match path: /api/ +[2025-02-21 00:06:58] Directive : debug - Record-Access +[2025-02-21 00:06:58] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:58] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:58] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:06:58] Route : debug - method not match +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:06:58] Route : debug - method not match +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:06:58] Access : info - From 127.0.0.1:59282-POST /api/login +[2025-02-21 00:06:58] Access : info - match path: /api/ +[2025-02-21 00:06:58] Directive : debug - Record-Access +[2025-02-21 00:06:58] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:58] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:58] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:06:58] Route : debug - method not match +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:06:58] Route : debug - method not match +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:06:58] Access : info - From 127.0.0.1:44912-POST /api/login +[2025-02-21 00:06:58] Access : info - match path: /api/ +[2025-02-21 00:06:58] Directive : debug - Record-Access +[2025-02-21 00:06:58] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:06:58] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:06:58] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:06:58] Route : debug - method not match +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:06:58] Route : debug - method not match +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:06:58] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:10:41] Access : info - From 127.0.0.1:34916-POST /api/login +[2025-02-21 00:10:41] Access : info - match path: /api/ +[2025-02-21 00:10:41] Directive : debug - Record-Access +[2025-02-21 00:10:41] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:10:41] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:10:41] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:10:41] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:10:41] Route : debug - method not match +[2025-02-21 00:10:41] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:10:41] Route : debug - method not match +[2025-02-21 00:10:41] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:10:41] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:15:13] Server : info - Load config success +[2025-02-21 00:15:13] Server : info - start gohttpd +[2025-02-21 00:15:13] ServerMux : debug - NewServeMux +[2025-02-21 00:15:13] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:15:13] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:15:13] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:15:13] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:15:13] ServerMux : debug - NewServeMux +[2025-02-21 00:15:13] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:15:13] ServerMux : debug - add directive: Gzip_Response +[2025-02-21 00:15:13] Listener : debug - listen on :8088 +[2025-02-21 00:15:13] Listener : debug - listen on :3000 +[2025-02-21 00:15:13] Server : info - gohttpd start success +[2025-02-21 00:15:19] Access : info - From 127.0.0.1:37394-GET / +[2025-02-21 00:15:19] Access : info - match path: / +[2025-02-21 00:15:19] Directive : debug - Record-Access +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:19] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:15:19] Access : info - From 127.0.0.1:37394-GET /@vite/client +[2025-02-21 00:15:19] Access : info - match path: / +[2025-02-21 00:15:19] Directive : debug - Record-Access +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:19] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:15:19] Access : info - From 127.0.0.1:37408-GET /styles.css +[2025-02-21 00:15:19] Access : info - match path: / +[2025-02-21 00:15:19] Directive : debug - Record-Access +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:19] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:15:19] Access : info - From 127.0.0.1:37414-GET /polyfills.js +[2025-02-21 00:15:19] Access : info - match path: / +[2025-02-21 00:15:19] Directive : debug - Record-Access +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:19] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:15:19] Access : info - From 127.0.0.1:37394-GET /main.js +[2025-02-21 00:15:19] Access : info - match path: / +[2025-02-21 00:15:19] Directive : debug - Record-Access +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:19] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:15:19] Access : info - From 127.0.0.1:37414-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:15:19] Access : info - match path: / +[2025-02-21 00:15:19] Directive : debug - Record-Access +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:19] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37422-GET /styles.css.map +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37422-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37426-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37422-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37426-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37436-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37456-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37472-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37452-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37408-GET /@ng/component +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740068120668 to http://localhost:4200 +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37414-GET /chunk-AX5V5D76.js +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37422-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:15:20] Access : info - From 127.0.0.1:37436-GET /app.component.css.map +[2025-02-21 00:15:20] Access : info - match path: / +[2025-02-21 00:15:20] Directive : debug - Record-Access +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:20] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:20] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:15:21] Access : info - From 127.0.0.1:37486-GET / +[2025-02-21 00:15:21] Access : info - match path: / +[2025-02-21 00:15:21] Directive : debug - Record-Access +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:21] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:15:21] Access : info - From 127.0.0.1:37408-GET /@ng/component +[2025-02-21 00:15:21] Access : info - match path: / +[2025-02-21 00:15:21] Directive : debug - Record-Access +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:21] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740068121055 to http://localhost:4200 +[2025-02-21 00:15:21] Access : info - From 127.0.0.1:37414-GET /favicon.ico +[2025-02-21 00:15:21] Access : info - match path: / +[2025-02-21 00:15:21] Directive : debug - Record-Access +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:21] Proxy : info - proxy localhost:8088/favicon.ico to http://localhost:4200 +[2025-02-21 00:15:21] Access : info - From 127.0.0.1:37456-GET /login.component.css.map +[2025-02-21 00:15:21] Access : info - match path: / +[2025-02-21 00:15:21] Directive : debug - Record-Access +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:15:21] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:15:21] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:16:08] Access : info - From 127.0.0.1:37394-POST /api/login +[2025-02-21 00:16:08] Access : info - match path: /api/ +[2025-02-21 00:16:08] Directive : debug - Record-Access +[2025-02-21 00:16:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:16:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:16:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:16:22] Access : info - From 127.0.0.1:37394-POST /api/login +[2025-02-21 00:16:22] Access : info - match path: /api/ +[2025-02-21 00:16:22] Directive : debug - Record-Access +[2025-02-21 00:16:22] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:16:22] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:16:22] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:16:22] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:16:22] Route : debug - method not match +[2025-02-21 00:16:22] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:16:22] Route : debug - method not match +[2025-02-21 00:16:22] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:16:22] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:16:51] Access : info - From 127.0.0.1:37456-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:16:51] Access : info - match path: / +[2025-02-21 00:16:51] Directive : debug - Record-Access +[2025-02-21 00:16:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:16:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:16:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:16:51] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:17:24] Access : info - From 127.0.0.1:37394-POST /api/login +[2025-02-21 00:17:24] Access : info - match path: /api/ +[2025-02-21 00:17:24] Directive : debug - Record-Access +[2025-02-21 00:17:24] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:17:24] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:17:24] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:17:24] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:17:24] Route : debug - method not match +[2025-02-21 00:17:24] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:17:24] Route : debug - method not match +[2025-02-21 00:17:24] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:17:24] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:18:48] Server : info - Load config success +[2025-02-21 00:18:48] Server : info - start gohttpd +[2025-02-21 00:18:48] ServerMux : debug - NewServeMux +[2025-02-21 00:18:48] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:18:48] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:18:48] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:18:48] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:18:48] ServerMux : debug - NewServeMux +[2025-02-21 00:18:48] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:18:48] ServerMux : debug - add directive: Gzip_Response +[2025-02-21 00:18:48] Listener : debug - listen on :8088 +[2025-02-21 00:18:48] Listener : debug - listen on :3000 +[2025-02-21 00:18:48] Server : info - gohttpd start success +[2025-02-21 00:18:49] Access : info - From 127.0.0.1:50204-GET / +[2025-02-21 00:18:49] Access : info - match path: / +[2025-02-21 00:18:49] Directive : debug - Record-Access +[2025-02-21 00:18:49] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:49] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:49] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:49] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:18:49] Access : info - From 127.0.0.1:50206-GET / +[2025-02-21 00:18:49] Access : info - match path: / +[2025-02-21 00:18:49] Directive : debug - Record-Access +[2025-02-21 00:18:49] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:49] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:49] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:49] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:18:50] Access : info - From 127.0.0.1:50206-GET /@vite/client +[2025-02-21 00:18:50] Access : info - match path: / +[2025-02-21 00:18:50] Directive : debug - Record-Access +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:50] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:18:50] Access : info - From 127.0.0.1:50214-GET /styles.css +[2025-02-21 00:18:50] Access : info - match path: / +[2025-02-21 00:18:50] Directive : debug - Record-Access +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:50] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:18:50] Access : info - From 127.0.0.1:50206-GET /polyfills.js +[2025-02-21 00:18:50] Access : info - match path: / +[2025-02-21 00:18:50] Directive : debug - Record-Access +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:50] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:18:50] Access : info - From 127.0.0.1:50214-GET /main.js +[2025-02-21 00:18:50] Access : info - match path: / +[2025-02-21 00:18:50] Directive : debug - Record-Access +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:50] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:18:50] Access : info - From 127.0.0.1:50214-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:18:50] Access : info - match path: / +[2025-02-21 00:18:50] Directive : debug - Record-Access +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:50] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:18:50] Access : info - From 127.0.0.1:50228-GET /styles.css.map +[2025-02-21 00:18:50] Access : info - match path: / +[2025-02-21 00:18:50] Directive : debug - Record-Access +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:50] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:18:50] Access : info - From 127.0.0.1:50232-GET / +[2025-02-21 00:18:50] Access : info - match path: / +[2025-02-21 00:18:50] Directive : debug - Record-Access +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:50] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:50] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50228-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50242-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50228-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50242-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50270-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50254-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50288-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50280-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50214-GET /@ng/component +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740068331002 to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50228-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50206-GET /chunk-AX5V5D76.js +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50270-GET /app.component.css.map +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:18:51] Access : info - From 127.0.0.1:50214-GET /@ng/component +[2025-02-21 00:18:51] Access : info - match path: / +[2025-02-21 00:18:51] Directive : debug - Record-Access +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:51] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740068331765 to http://localhost:4200 +[2025-02-21 00:18:52] Access : info - From 127.0.0.1:50280-GET /login.component.css.map +[2025-02-21 00:18:52] Access : info - match path: / +[2025-02-21 00:18:52] Directive : debug - Record-Access +[2025-02-21 00:18:52] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:18:52] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:18:52] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:18:52] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:19:12] Access : info - From 127.0.0.1:50206-POST /api/login +[2025-02-21 00:19:12] Access : info - match path: /api/ +[2025-02-21 00:19:12] Directive : debug - Record-Access +[2025-02-21 00:19:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:19:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:19:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:19:32] Access : info - From 127.0.0.1:50206-POST /api/login +[2025-02-21 00:19:32] Access : info - match path: /api/ +[2025-02-21 00:19:32] Directive : debug - Record-Access +[2025-02-21 00:19:32] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:19:32] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:19:32] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:19:32] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:19:32] Route : debug - method not match +[2025-02-21 00:19:32] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:19:32] Route : debug - method not match +[2025-02-21 00:19:32] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:19:32] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:19:41] Access : info - From 127.0.0.1:50214-POST /api/login +[2025-02-21 00:19:41] Access : info - match path: /api/ +[2025-02-21 00:19:41] Directive : debug - Record-Access +[2025-02-21 00:19:41] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:19:41] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:19:41] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:19:41] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:19:41] Route : debug - method not match +[2025-02-21 00:19:41] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:19:41] Route : debug - method not match +[2025-02-21 00:19:43] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:19:43] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:28:34] Server : info - Load config success +[2025-02-21 00:28:34] Server : info - start gohttpd +[2025-02-21 00:28:34] ServerMux : debug - NewServeMux +[2025-02-21 00:28:34] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:28:34] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:28:34] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:28:34] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:28:34] ServerMux : debug - NewServeMux +[2025-02-21 00:28:34] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:28:34] ServerMux : debug - add directive: Gzip_Response +[2025-02-21 00:28:34] Listener : debug - listen on :8088 +[2025-02-21 00:28:34] Listener : debug - listen on :3000 +[2025-02-21 00:28:34] Server : info - gohttpd start success +[2025-02-21 00:28:37] Access : info - From 127.0.0.1:51950-GET / +[2025-02-21 00:28:37] Access : info - match path: / +[2025-02-21 00:28:37] Directive : debug - Record-Access +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:37] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:28:37] Access : info - From 127.0.0.1:51956-GET / +[2025-02-21 00:28:37] Access : info - match path: / +[2025-02-21 00:28:37] Directive : debug - Record-Access +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:37] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:28:37] Access : info - From 127.0.0.1:51956-GET /@vite/client +[2025-02-21 00:28:37] Access : info - match path: / +[2025-02-21 00:28:37] Directive : debug - Record-Access +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:37] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:28:37] Access : info - From 127.0.0.1:51966-GET /styles.css +[2025-02-21 00:28:37] Access : info - match path: / +[2025-02-21 00:28:37] Directive : debug - Record-Access +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:37] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:28:37] Access : info - From 127.0.0.1:51956-GET /polyfills.js +[2025-02-21 00:28:37] Access : info - match path: / +[2025-02-21 00:28:37] Directive : debug - Record-Access +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:37] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:28:37] Access : info - From 127.0.0.1:51966-GET /main.js +[2025-02-21 00:28:37] Access : info - match path: / +[2025-02-21 00:28:37] Directive : debug - Record-Access +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:37] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:28:37] Access : info - From 127.0.0.1:51966-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:28:37] Access : info - match path: / +[2025-02-21 00:28:37] Directive : debug - Record-Access +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:37] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:28:37] Access : info - From 127.0.0.1:51972-GET /styles.css.map +[2025-02-21 00:28:37] Access : info - match path: / +[2025-02-21 00:28:37] Directive : debug - Record-Access +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:37] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:37] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:51986-GET / +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:51972-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:51994-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:51972-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:52000-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:52016-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:52030-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:52028-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:51966-GET /@ng/component +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740068918419 to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:51994-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:51972-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:52016-GET /app.component.css.map +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:51966-GET /chunk-AX5V5D76.js +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:28:38] Access : info - From 127.0.0.1:51966-GET /@ng/component +[2025-02-21 00:28:38] Access : info - match path: / +[2025-02-21 00:28:38] Directive : debug - Record-Access +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:38] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:38] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740068918690 to http://localhost:4200 +[2025-02-21 00:28:39] Access : info - From 127.0.0.1:51966-GET /favicon.ico +[2025-02-21 00:28:39] Access : info - match path: / +[2025-02-21 00:28:39] Directive : debug - Record-Access +[2025-02-21 00:28:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:39] Proxy : info - proxy localhost:8088/favicon.ico to http://localhost:4200 +[2025-02-21 00:28:39] Access : info - From 127.0.0.1:52016-GET /login.component.css.map +[2025-02-21 00:28:39] Access : info - match path: / +[2025-02-21 00:28:39] Directive : debug - Record-Access +[2025-02-21 00:28:39] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:39] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:39] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:28:39] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:28:58] Access : info - From 127.0.0.1:51956-POST /api/login +[2025-02-21 00:28:58] Access : info - match path: /api/ +[2025-02-21 00:28:58] Directive : debug - Record-Access +[2025-02-21 00:28:58] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:28:58] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:28:58] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:29:22] Access : info - From 127.0.0.1:51956-POST /api/login +[2025-02-21 00:29:22] Access : info - match path: /api/ +[2025-02-21 00:29:22] Directive : debug - Record-Access +[2025-02-21 00:29:22] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:29:22] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:29:22] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:29:22] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:29:22] Route : debug - method not match +[2025-02-21 00:29:22] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:29:22] Route : debug - method not match +[2025-02-21 00:29:22] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:29:22] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:31:11] Access : info - From 127.0.0.1:51956-GET / +[2025-02-21 00:31:11] Access : info - match path: / +[2025-02-21 00:31:11] Directive : debug - Record-Access +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:11] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:31:11] Access : info - From 127.0.0.1:51956-GET /@vite/client +[2025-02-21 00:31:11] Access : info - match path: / +[2025-02-21 00:31:11] Directive : debug - Record-Access +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:11] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:31:11] Access : info - From 127.0.0.1:58414-GET /styles.css +[2025-02-21 00:31:11] Access : info - match path: / +[2025-02-21 00:31:11] Directive : debug - Record-Access +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:11] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:31:11] Access : info - From 127.0.0.1:51956-GET /polyfills.js +[2025-02-21 00:31:11] Access : info - match path: / +[2025-02-21 00:31:11] Directive : debug - Record-Access +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:11] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:31:11] Access : info - From 127.0.0.1:58414-GET /main.js +[2025-02-21 00:31:11] Access : info - match path: / +[2025-02-21 00:31:11] Directive : debug - Record-Access +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:11] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:31:11] Access : info - From 127.0.0.1:58414-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:31:11] Access : info - match path: / +[2025-02-21 00:31:11] Directive : debug - Record-Access +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:11] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:11] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:31:12] Access : info - From 127.0.0.1:58420-GET /styles.css.map +[2025-02-21 00:31:12] Access : info - match path: / +[2025-02-21 00:31:12] Directive : debug - Record-Access +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:12] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:31:12] Access : info - From 127.0.0.1:58432-GET / +[2025-02-21 00:31:12] Access : info - match path: / +[2025-02-21 00:31:12] Directive : debug - Record-Access +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:12] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:31:12] Access : info - From 127.0.0.1:58420-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:31:12] Access : info - match path: / +[2025-02-21 00:31:12] Directive : debug - Record-Access +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:12] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:31:12] Access : info - From 127.0.0.1:58434-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:31:12] Access : info - match path: / +[2025-02-21 00:31:12] Directive : debug - Record-Access +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:12] Access : info - From 127.0.0.1:58420-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:31:12] Access : info - match path: / +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:12] Directive : debug - Record-Access +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:12] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:12] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:31:12] Access : info - From 127.0.0.1:58444-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:31:12] Access : info - match path: / +[2025-02-21 00:31:12] Directive : debug - Record-Access +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:12] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:31:12] Access : info - From 127.0.0.1:58466-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:31:12] Access : info - From 127.0.0.1:58460-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:31:12] Access : info - From 127.0.0.1:58464-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:31:12] Access : info - match path: / +[2025-02-21 00:31:12] Directive : debug - Record-Access +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:12] Access : info - match path: / +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:12] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:31:12] Directive : debug - Record-Access +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:12] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:31:12] Access : info - match path: / +[2025-02-21 00:31:12] Directive : debug - Record-Access +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:12] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:31:12] Access : info - From 127.0.0.1:58434-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:31:12] Access : info - match path: / +[2025-02-21 00:31:12] Directive : debug - Record-Access +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:12] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:31:12] Access : info - From 127.0.0.1:58420-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:31:12] Access : info - match path: / +[2025-02-21 00:31:12] Directive : debug - Record-Access +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:12] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:31:13] Access : info - From 127.0.0.1:58414-GET /@ng/component +[2025-02-21 00:31:13] Access : info - match path: / +[2025-02-21 00:31:13] Directive : debug - Record-Access +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:13] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740069072853 to http://localhost:4200 +[2025-02-21 00:31:13] Access : info - From 127.0.0.1:58460-GET /app.component.css.map +[2025-02-21 00:31:13] Access : info - match path: / +[2025-02-21 00:31:13] Directive : debug - Record-Access +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:13] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:31:13] Access : info - From 127.0.0.1:58414-GET /chunk-AX5V5D76.js +[2025-02-21 00:31:13] Access : info - match path: / +[2025-02-21 00:31:13] Directive : debug - Record-Access +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:13] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:31:13] Access : info - From 127.0.0.1:58414-GET /@ng/component +[2025-02-21 00:31:13] Access : info - match path: / +[2025-02-21 00:31:13] Directive : debug - Record-Access +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:13] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740069073372 to http://localhost:4200 +[2025-02-21 00:31:13] Access : info - From 127.0.0.1:58460-GET /login.component.css.map +[2025-02-21 00:31:13] Access : info - match path: / +[2025-02-21 00:31:13] Directive : debug - Record-Access +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:13] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:31:26] Access : info - From 127.0.0.1:58414-POST /api/login +[2025-02-21 00:31:26] Access : info - match path: /api/ +[2025-02-21 00:31:26] Directive : debug - Record-Access +[2025-02-21 00:31:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:31:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:31:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:31:26] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:31:26] Route : debug - method not match +[2025-02-21 00:31:26] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:31:26] Route : debug - method not match +[2025-02-21 00:31:26] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:31:26] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:32:23] Server : info - Load config success +[2025-02-21 00:32:23] Server : info - start gohttpd +[2025-02-21 00:32:23] ServerMux : debug - NewServeMux +[2025-02-21 00:32:23] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:32:23] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:32:23] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:32:23] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:32:23] ServerMux : debug - NewServeMux +[2025-02-21 00:32:23] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:32:23] ServerMux : debug - add directive: Gzip_Response +[2025-02-21 00:32:23] Listener : debug - listen on :8088 +[2025-02-21 00:32:23] Listener : debug - listen on :3000 +[2025-02-21 00:32:23] Server : info - gohttpd start success +[2025-02-21 00:32:24] Access : info - From 127.0.0.1:56252-GET / +[2025-02-21 00:32:24] Access : info - match path: / +[2025-02-21 00:32:24] Directive : debug - Record-Access +[2025-02-21 00:32:24] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:24] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:24] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:24] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:32:24] Access : info - From 127.0.0.1:56254-GET / +[2025-02-21 00:32:24] Access : info - match path: / +[2025-02-21 00:32:24] Directive : debug - Record-Access +[2025-02-21 00:32:24] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:24] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:24] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:24] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:32:25] Access : info - From 127.0.0.1:56254-GET /@vite/client +[2025-02-21 00:32:25] Access : info - match path: / +[2025-02-21 00:32:25] Directive : debug - Record-Access +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:25] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:32:25] Access : info - From 127.0.0.1:56254-GET /polyfills.js +[2025-02-21 00:32:25] Access : info - match path: / +[2025-02-21 00:32:25] Directive : debug - Record-Access +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:25] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:32:25] Access : info - From 127.0.0.1:56254-GET /main.js +[2025-02-21 00:32:25] Access : info - match path: / +[2025-02-21 00:32:25] Directive : debug - Record-Access +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:25] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:32:25] Access : info - From 127.0.0.1:56254-GET /styles.css +[2025-02-21 00:32:25] Access : info - match path: / +[2025-02-21 00:32:25] Directive : debug - Record-Access +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:25] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:32:25] Access : info - From 127.0.0.1:56254-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:32:25] Access : info - match path: / +[2025-02-21 00:32:25] Directive : debug - Record-Access +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:25] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:32:25] Access : info - From 127.0.0.1:56260-GET /styles.css.map +[2025-02-21 00:32:25] Access : info - match path: / +[2025-02-21 00:32:25] Directive : debug - Record-Access +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:25] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:32:25] Access : info - From 127.0.0.1:56272-GET / +[2025-02-21 00:32:25] Access : info - match path: / +[2025-02-21 00:32:25] Directive : debug - Record-Access +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:25] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:32:25] Access : info - From 127.0.0.1:56254-GET /@ng/component +[2025-02-21 00:32:25] Access : info - match path: / +[2025-02-21 00:32:25] Directive : debug - Record-Access +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:25] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:25] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740069145927 to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56254-GET /chunk-AX5V5D76.js +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56260-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56284-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56300-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56304-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56314-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56308-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56260-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56284-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56300-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56314-GET /app.component.css.map +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56254-GET /@ng/component +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740069146216 to http://localhost:4200 +[2025-02-21 00:32:26] Access : info - From 127.0.0.1:56300-GET /login.component.css.map +[2025-02-21 00:32:26] Access : info - match path: / +[2025-02-21 00:32:26] Directive : debug - Record-Access +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:26] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:26] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:32:35] Access : info - From 127.0.0.1:56254-POST /api/login +[2025-02-21 00:32:35] Access : info - match path: /api/ +[2025-02-21 00:32:35] Directive : debug - Record-Access +[2025-02-21 00:32:35] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:35] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:35] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:51] Access : info - From 127.0.0.1:56254-POST /api/login +[2025-02-21 00:32:51] Access : info - match path: /api/ +[2025-02-21 00:32:51] Directive : debug - Record-Access +[2025-02-21 00:32:51] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:32:51] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:32:51] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:32:51] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:32:51] Route : debug - method not match +[2025-02-21 00:32:51] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:32:51] Route : debug - method not match +[2025-02-21 00:32:51] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:32:51] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:34:07] Server : info - Load config success +[2025-02-21 00:34:07] Server : info - start gohttpd +[2025-02-21 00:34:07] ServerMux : debug - NewServeMux +[2025-02-21 00:34:07] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:34:07] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:34:07] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:34:07] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:34:07] ServerMux : debug - NewServeMux +[2025-02-21 00:34:07] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:34:07] ServerMux : debug - add directive: Gzip_Response +[2025-02-21 00:34:07] Listener : debug - listen on :8088 +[2025-02-21 00:34:07] Listener : debug - listen on :3000 +[2025-02-21 00:34:07] Server : info - gohttpd start success +[2025-02-21 00:34:07] Access : info - From 127.0.0.1:44930-GET / +[2025-02-21 00:34:07] Access : info - match path: / +[2025-02-21 00:34:07] Directive : debug - Record-Access +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:07] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:34:07] Access : info - From 127.0.0.1:44944-GET / +[2025-02-21 00:34:07] Access : info - match path: / +[2025-02-21 00:34:07] Directive : debug - Record-Access +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:07] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:34:07] Access : info - From 127.0.0.1:44944-GET /@vite/client +[2025-02-21 00:34:07] Access : info - match path: / +[2025-02-21 00:34:07] Directive : debug - Record-Access +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:07] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:34:07] Access : info - From 127.0.0.1:44958-GET /polyfills.js +[2025-02-21 00:34:07] Access : info - match path: / +[2025-02-21 00:34:07] Directive : debug - Record-Access +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:07] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:34:07] Access : info - From 127.0.0.1:44958-GET /main.js +[2025-02-21 00:34:07] Access : info - match path: / +[2025-02-21 00:34:07] Directive : debug - Record-Access +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:07] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:34:07] Access : info - From 127.0.0.1:44958-GET /styles.css +[2025-02-21 00:34:07] Access : info - match path: / +[2025-02-21 00:34:07] Directive : debug - Record-Access +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:07] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:44958-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:44972-GET /styles.css.map +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:44982-GET / +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:44972-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:44988-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:44998-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:45006-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:45016-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:45032-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:44958-GET /@ng/component +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740069248723 to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:44972-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:44988-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:44998-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:44958-GET /chunk-AX5V5D76.js +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:34:08] Access : info - From 127.0.0.1:45032-GET /app.component.css.map +[2025-02-21 00:34:08] Access : info - match path: / +[2025-02-21 00:34:08] Directive : debug - Record-Access +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:08] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:34:09] Access : info - From 127.0.0.1:44958-GET /@ng/component +[2025-02-21 00:34:09] Access : info - match path: / +[2025-02-21 00:34:09] Directive : debug - Record-Access +[2025-02-21 00:34:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:09] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740069249050 to http://localhost:4200 +[2025-02-21 00:34:09] Access : info - From 127.0.0.1:45016-GET /login.component.css.map +[2025-02-21 00:34:09] Access : info - match path: / +[2025-02-21 00:34:09] Directive : debug - Record-Access +[2025-02-21 00:34:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:34:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:34:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:34:09] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:36:05] Server : info - Load config success +[2025-02-21 00:36:05] Server : info - start gohttpd +[2025-02-21 00:36:05] ServerMux : debug - NewServeMux +[2025-02-21 00:36:05] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:36:05] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:36:05] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:36:05] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:36:05] ServerMux : debug - NewServeMux +[2025-02-21 00:36:05] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:36:05] ServerMux : debug - add directive: Gzip_Response +[2025-02-21 00:36:05] Listener : debug - listen on :3000 +[2025-02-21 00:36:05] Listener : debug - listen on :8088 +[2025-02-21 00:36:05] Server : info - gohttpd start success +[2025-02-21 00:36:07] Access : info - From 127.0.0.1:50862-GET / +[2025-02-21 00:36:07] Access : info - match path: / +[2025-02-21 00:36:07] Directive : debug - Record-Access +[2025-02-21 00:36:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:07] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:36:08] Access : info - From 127.0.0.1:50864-GET / +[2025-02-21 00:36:08] Access : info - match path: / +[2025-02-21 00:36:08] Directive : debug - Record-Access +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:08] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:36:08] Access : info - From 127.0.0.1:50864-GET /@vite/client +[2025-02-21 00:36:08] Access : info - match path: / +[2025-02-21 00:36:08] Directive : debug - Record-Access +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:08] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:36:08] Access : info - From 127.0.0.1:50864-GET /styles.css +[2025-02-21 00:36:08] Access : info - match path: / +[2025-02-21 00:36:08] Directive : debug - Record-Access +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:08] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:36:08] Access : info - From 127.0.0.1:50864-GET /polyfills.js +[2025-02-21 00:36:08] Access : info - match path: / +[2025-02-21 00:36:08] Directive : debug - Record-Access +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:08] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:36:08] Access : info - From 127.0.0.1:50874-GET /main.js +[2025-02-21 00:36:08] Access : info - match path: / +[2025-02-21 00:36:08] Directive : debug - Record-Access +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:08] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:36:08] Access : info - From 127.0.0.1:50874-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:36:08] Access : info - match path: / +[2025-02-21 00:36:08] Directive : debug - Record-Access +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:08] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:36:08] Access : info - From 127.0.0.1:50884-GET /styles.css.map +[2025-02-21 00:36:08] Access : info - match path: / +[2025-02-21 00:36:08] Directive : debug - Record-Access +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:08] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:08] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:56706-GET / +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:50884-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:56722-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:50884-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:56724-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:56756-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:56744-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:56730-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:50874-GET /@ng/component +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740069369309 to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:56722-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:50884-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:50874-GET /chunk-AX5V5D76.js +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:56722-GET /app.component.css.map +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:36:09] Access : info - From 127.0.0.1:50874-GET /@ng/component +[2025-02-21 00:36:09] Access : info - match path: / +[2025-02-21 00:36:09] Directive : debug - Record-Access +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:09] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740069369638 to http://localhost:4200 +[2025-02-21 00:36:10] Access : info - From 127.0.0.1:56756-GET /login.component.css.map +[2025-02-21 00:36:10] Access : info - match path: / +[2025-02-21 00:36:10] Directive : debug - Record-Access +[2025-02-21 00:36:10] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:10] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:10] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:36:10] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:36:34] Access : info - From 127.0.0.1:50874-POST /api/login +[2025-02-21 00:36:34] Access : info - match path: /api/ +[2025-02-21 00:36:34] Directive : debug - Record-Access +[2025-02-21 00:36:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:36:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:36:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:37:04] Access : info - From 127.0.0.1:50874-POST /api/login +[2025-02-21 00:37:04] Access : info - match path: /api/ +[2025-02-21 00:37:04] Directive : debug - Record-Access +[2025-02-21 00:37:04] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:37:04] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:37:04] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:37:04] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:37:04] Route : debug - method not match +[2025-02-21 00:37:04] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:37:04] Route : debug - method not match +[2025-02-21 00:37:04] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:37:04] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:37:19] Access : info - From 127.0.0.1:56756-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:37:19] Access : info - match path: / +[2025-02-21 00:37:19] Directive : debug - Record-Access +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:37:19] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:37:19] Access : info - From 127.0.0.1:56722-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:37:19] Access : info - match path: / +[2025-02-21 00:37:19] Directive : debug - Record-Access +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:37:19] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:37:19] Access : info - From 127.0.0.1:56744-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:37:19] Access : info - From 127.0.0.1:50884-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:37:19] Access : info - match path: / +[2025-02-21 00:37:19] Directive : debug - Record-Access +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:37:19] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:37:19] Access : info - match path: / +[2025-02-21 00:37:19] Directive : debug - Record-Access +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:37:19] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:37:19] Access : info - From 127.0.0.1:56730-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:37:19] Access : info - match path: / +[2025-02-21 00:37:19] Directive : debug - Record-Access +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:37:19] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:37:19] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:40:28] Access : info - From 127.0.0.1:59252-POST /api/login +[2025-02-21 00:40:28] Access : info - match path: /api/ +[2025-02-21 00:40:28] Directive : debug - Record-Access +[2025-02-21 00:40:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:40:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:40:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:40:28] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:40:28] Route : debug - method not match +[2025-02-21 00:40:28] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:40:28] Route : debug - method not match +[2025-02-21 00:40:28] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:40:28] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:41:12] Server : info - Load config success +[2025-02-21 00:41:12] Server : info - start gohttpd +[2025-02-21 00:41:12] ServerMux : debug - NewServeMux +[2025-02-21 00:41:12] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:41:12] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:41:12] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:41:12] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:41:12] ServerMux : debug - NewServeMux +[2025-02-21 00:41:12] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:41:12] ServerMux : debug - add directive: Gzip_Response +[2025-02-21 00:41:12] Listener : debug - listen on :8088 +[2025-02-21 00:41:12] Listener : debug - listen on :3000 +[2025-02-21 00:41:12] Server : info - gohttpd start success +[2025-02-21 00:41:12] Access : info - From 127.0.0.1:44562-GET / +[2025-02-21 00:41:12] Access : info - match path: / +[2025-02-21 00:41:12] Directive : debug - Record-Access +[2025-02-21 00:41:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:12] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:41:12] Access : info - From 127.0.0.1:44578-GET / +[2025-02-21 00:41:12] Access : info - match path: / +[2025-02-21 00:41:12] Directive : debug - Record-Access +[2025-02-21 00:41:12] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:12] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:12] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:12] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:41:13] Access : info - From 127.0.0.1:44578-GET /@vite/client +[2025-02-21 00:41:13] Access : info - match path: / +[2025-02-21 00:41:13] Directive : debug - Record-Access +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:13] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:41:13] Access : info - From 127.0.0.1:44578-GET /styles.css +[2025-02-21 00:41:13] Access : info - match path: / +[2025-02-21 00:41:13] Directive : debug - Record-Access +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:13] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:41:13] Access : info - From 127.0.0.1:44578-GET /polyfills.js +[2025-02-21 00:41:13] Access : info - match path: / +[2025-02-21 00:41:13] Directive : debug - Record-Access +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:13] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:41:13] Access : info - From 127.0.0.1:44582-GET /main.js +[2025-02-21 00:41:13] Access : info - match path: / +[2025-02-21 00:41:13] Directive : debug - Record-Access +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:13] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:41:13] Access : info - From 127.0.0.1:44582-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:41:13] Access : info - match path: / +[2025-02-21 00:41:13] Directive : debug - Record-Access +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:13] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:41:13] Access : info - From 127.0.0.1:44590-GET /styles.css.map +[2025-02-21 00:41:13] Access : info - match path: / +[2025-02-21 00:41:13] Directive : debug - Record-Access +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:13] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:41:13] Access : info - From 127.0.0.1:44600-GET / +[2025-02-21 00:41:13] Access : info - match path: / +[2025-02-21 00:41:13] Directive : debug - Record-Access +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:13] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:13] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44590-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44604-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44612-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44616-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44628-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44626-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44590-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44582-GET /@ng/component +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740069674139 to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44604-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44578-GET /chunk-AX5V5D76.js +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44612-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44628-GET /app.component.css.map +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44582-GET /@ng/component +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740069674395 to http://localhost:4200 +[2025-02-21 00:41:14] Access : info - From 127.0.0.1:44628-GET /login.component.css.map +[2025-02-21 00:41:14] Access : info - match path: / +[2025-02-21 00:41:14] Directive : debug - Record-Access +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:14] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:41:34] Access : info - From 127.0.0.1:44582-POST /api/login +[2025-02-21 00:41:34] Access : info - match path: /api/ +[2025-02-21 00:41:34] Directive : debug - Record-Access +[2025-02-21 00:41:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:42] Access : info - From 127.0.0.1:44582-POST /api/login +[2025-02-21 00:41:42] Access : info - match path: /api/ +[2025-02-21 00:41:42] Directive : debug - Record-Access +[2025-02-21 00:41:42] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:41:42] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:41:42] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:41:42] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:41:42] Route : debug - method not match +[2025-02-21 00:41:42] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:41:42] Route : debug - method not match +[2025-02-21 00:41:42] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:41:42] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:42:22] Access : info - From 127.0.0.1:44582-POST /api/login +[2025-02-21 00:42:22] Access : info - match path: /api/ +[2025-02-21 00:42:22] Directive : debug - Record-Access +[2025-02-21 00:42:22] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:22] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:22] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:22] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:42:22] Route : debug - method not match +[2025-02-21 00:42:22] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:42:22] Route : debug - method not match +[2025-02-21 00:42:22] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:42:22] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:42:33] Access : info - From 127.0.0.1:44582-GET / +[2025-02-21 00:42:33] Access : info - match path: / +[2025-02-21 00:42:33] Directive : debug - Record-Access +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:33] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:42:33] Access : info - From 127.0.0.1:44582-GET /@vite/client +[2025-02-21 00:42:33] Access : info - match path: / +[2025-02-21 00:42:33] Directive : debug - Record-Access +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:33] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:42:33] Access : info - From 127.0.0.1:44578-GET /styles.css +[2025-02-21 00:42:33] Access : info - match path: / +[2025-02-21 00:42:33] Directive : debug - Record-Access +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:33] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:42:33] Access : info - From 127.0.0.1:44582-GET /polyfills.js +[2025-02-21 00:42:33] Access : info - match path: / +[2025-02-21 00:42:33] Directive : debug - Record-Access +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:33] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:42:33] Access : info - From 127.0.0.1:44578-GET /main.js +[2025-02-21 00:42:33] Access : info - match path: / +[2025-02-21 00:42:33] Directive : debug - Record-Access +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:33] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:42:33] Access : info - From 127.0.0.1:44582-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:42:33] Access : info - match path: / +[2025-02-21 00:42:33] Directive : debug - Record-Access +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:33] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:42:33] Access : info - From 127.0.0.1:44628-GET /styles.css.map +[2025-02-21 00:42:33] Access : info - match path: / +[2025-02-21 00:42:33] Directive : debug - Record-Access +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:33] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:33] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:45754-GET / +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44628-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44628-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44590-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44626-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44604-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44612-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44616-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44582-GET /@ng/component +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740069754249 to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44628-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44590-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44582-GET /chunk-AX5V5D76.js +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44604-GET /app.component.css.map +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44582-GET /@ng/component +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740069754543 to http://localhost:4200 +[2025-02-21 00:42:34] Access : info - From 127.0.0.1:44604-GET /login.component.css.map +[2025-02-21 00:42:34] Access : info - match path: / +[2025-02-21 00:42:34] Directive : debug - Record-Access +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:34] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:34] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:42:53] Access : info - From 127.0.0.1:44578-POST /api/login +[2025-02-21 00:42:53] Access : info - match path: /api/ +[2025-02-21 00:42:53] Directive : debug - Record-Access +[2025-02-21 00:42:53] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:42:53] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:42:53] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:42:53] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:42:53] Route : debug - method not match +[2025-02-21 00:42:53] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:42:53] Route : debug - method not match +[2025-02-21 00:42:53] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:42:53] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:43:09] Access : info - From 127.0.0.1:44582-POST /api/login +[2025-02-21 00:43:09] Access : info - match path: /api/ +[2025-02-21 00:43:09] Directive : debug - Record-Access +[2025-02-21 00:43:09] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:43:09] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:43:09] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:43:09] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:43:09] Route : debug - method not match +[2025-02-21 00:43:09] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:43:09] Route : debug - method not match +[2025-02-21 00:43:09] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:43:09] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:44:00] Server : info - Load config success +[2025-02-21 00:44:00] Server : info - start gohttpd +[2025-02-21 00:44:00] ServerMux : debug - NewServeMux +[2025-02-21 00:44:00] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:44:00] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:44:00] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:44:00] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:44:00] ServerMux : debug - NewServeMux +[2025-02-21 00:44:00] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:44:00] ServerMux : debug - add directive: Gzip_Response +[2025-02-21 00:44:00] Listener : debug - listen on :8088 +[2025-02-21 00:44:00] Listener : debug - listen on :3000 +[2025-02-21 00:44:00] Server : info - gohttpd start success +[2025-02-21 00:44:01] Access : info - From 127.0.0.1:46314-GET / +[2025-02-21 00:44:01] Access : info - match path: / +[2025-02-21 00:44:01] Directive : debug - Record-Access +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:01] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:44:01] Access : info - From 127.0.0.1:46326-GET / +[2025-02-21 00:44:01] Access : info - match path: / +[2025-02-21 00:44:01] Directive : debug - Record-Access +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:01] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:44:01] Access : info - From 127.0.0.1:46326-GET /@vite/client +[2025-02-21 00:44:01] Access : info - match path: / +[2025-02-21 00:44:01] Directive : debug - Record-Access +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:01] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:44:01] Access : info - From 127.0.0.1:46326-GET /polyfills.js +[2025-02-21 00:44:01] Access : info - match path: / +[2025-02-21 00:44:01] Directive : debug - Record-Access +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:01] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:44:01] Access : info - From 127.0.0.1:46326-GET /main.js +[2025-02-21 00:44:01] Access : info - match path: / +[2025-02-21 00:44:01] Directive : debug - Record-Access +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:01] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:44:01] Access : info - From 127.0.0.1:46326-GET /styles.css +[2025-02-21 00:44:01] Access : info - match path: / +[2025-02-21 00:44:01] Directive : debug - Record-Access +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:01] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:44:01] Access : info - From 127.0.0.1:46326-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:44:01] Access : info - match path: / +[2025-02-21 00:44:01] Directive : debug - Record-Access +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:01] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:44:01] Access : info - From 127.0.0.1:46332-GET /styles.css.map +[2025-02-21 00:44:01] Access : info - match path: / +[2025-02-21 00:44:01] Directive : debug - Record-Access +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:01] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:01] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46340-GET / +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46326-GET /@ng/component +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740069842311 to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46326-GET /chunk-AX5V5D76.js +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46332-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46332-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46350-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46366-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46388-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46378-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46398-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46332-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46350-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46326-GET /@ng/component +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740069842436 to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46388-GET /app.component.css.map +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46332-GET /login.component.css.map +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:44:02] Access : info - From 127.0.0.1:46326-GET /favicon.ico +[2025-02-21 00:44:02] Access : info - match path: / +[2025-02-21 00:44:02] Directive : debug - Record-Access +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:02] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:44:02] Proxy : info - proxy localhost:8088/favicon.ico to http://localhost:4200 +[2025-02-21 00:44:31] Access : info - From 127.0.0.1:49992-POST /api/login +[2025-02-21 00:44:31] Access : info - match path: /api/ +[2025-02-21 00:44:31] Directive : debug - Record-Access +[2025-02-21 00:44:31] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:44:31] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:44:31] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:05] Server : info - Load config success +[2025-02-21 00:46:05] Server : info - start gohttpd +[2025-02-21 00:46:05] ServerMux : debug - NewServeMux +[2025-02-21 00:46:05] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:46:05] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:46:05] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:46:05] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:46:05] ServerMux : debug - NewServeMux +[2025-02-21 00:46:05] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:46:05] ServerMux : debug - add directive: Gzip_Response +[2025-02-21 00:46:05] Listener : debug - listen on :8088 +[2025-02-21 00:46:05] Listener : debug - listen on :3000 +[2025-02-21 00:46:05] Server : info - gohttpd start success +[2025-02-21 00:46:06] Access : info - From 127.0.0.1:36444-GET / +[2025-02-21 00:46:06] Access : info - match path: / +[2025-02-21 00:46:06] Directive : debug - Record-Access +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:06] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:46:06] Access : info - From 127.0.0.1:36460-GET / +[2025-02-21 00:46:06] Access : info - match path: / +[2025-02-21 00:46:06] Directive : debug - Record-Access +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:06] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:46:06] Access : info - From 127.0.0.1:36460-GET /@vite/client +[2025-02-21 00:46:06] Access : info - match path: / +[2025-02-21 00:46:06] Directive : debug - Record-Access +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:06] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:46:06] Access : info - From 127.0.0.1:36464-GET /styles.css +[2025-02-21 00:46:06] Access : info - match path: / +[2025-02-21 00:46:06] Directive : debug - Record-Access +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:06] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:46:06] Access : info - From 127.0.0.1:36478-GET /polyfills.js +[2025-02-21 00:46:06] Access : info - match path: / +[2025-02-21 00:46:06] Directive : debug - Record-Access +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:06] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:46:06] Access : info - From 127.0.0.1:36480-GET /main.js +[2025-02-21 00:46:06] Access : info - match path: / +[2025-02-21 00:46:06] Directive : debug - Record-Access +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:06] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:46:06] Access : info - From 127.0.0.1:36480-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:46:06] Access : info - match path: / +[2025-02-21 00:46:06] Directive : debug - Record-Access +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:06] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:06] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36488-GET /styles.css.map +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36502-GET / +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36480-GET /@ng/component +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740069967246 to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36480-GET /chunk-AX5V5D76.js +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36518-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36534-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36562-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36542-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36550-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36488-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36534-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36518-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36562-GET /app.component.css.map +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36480-GET /@ng/component +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740069967388 to http://localhost:4200 +[2025-02-21 00:46:07] Access : info - From 127.0.0.1:36550-GET /login.component.css.map +[2025-02-21 00:46:07] Access : info - match path: / +[2025-02-21 00:46:07] Directive : debug - Record-Access +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:07] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:46:07] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:46:28] Access : info - From 127.0.0.1:36480-POST /api/login +[2025-02-21 00:46:28] Access : info - match path: /api/ +[2025-02-21 00:46:28] Directive : debug - Record-Access +[2025-02-21 00:46:28] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:46:28] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:46:28] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:05] Server : info - Load config success +[2025-02-21 00:47:05] Server : info - start gohttpd +[2025-02-21 00:47:05] ServerMux : debug - NewServeMux +[2025-02-21 00:47:05] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:47:05] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:47:05] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:47:05] ServerMux : debug - add directive: Set-Header +[2025-02-21 00:47:05] ServerMux : debug - NewServeMux +[2025-02-21 00:47:05] ServerMux : debug - add directive: Record-Access +[2025-02-21 00:47:05] ServerMux : debug - add directive: Gzip_Response +[2025-02-21 00:47:05] Listener : debug - listen on :8088 +[2025-02-21 00:47:05] Listener : debug - listen on :3000 +[2025-02-21 00:47:05] Server : info - gohttpd start success +[2025-02-21 00:47:10] Access : info - From 127.0.0.1:52686-POST /api/login +[2025-02-21 00:47:10] Access : info - match path: /api/ +[2025-02-21 00:47:10] Directive : debug - Record-Access +[2025-02-21 00:47:10] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:10] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:10] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:14] Access : info - From 127.0.0.1:52698-GET / +[2025-02-21 00:47:14] Access : info - match path: / +[2025-02-21 00:47:14] Directive : debug - Record-Access +[2025-02-21 00:47:14] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:14] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:14] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:14] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:47:14] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:47:14] Route : debug - method not match +[2025-02-21 00:47:14] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:47:14] Route : debug - method not match +[2025-02-21 00:47:14] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:47:14] Route : debug - matching route: POST /login with POST /login +[2025-02-21 00:47:17] Access : info - From 127.0.0.1:52686-GET / +[2025-02-21 00:47:17] Access : info - match path: / +[2025-02-21 00:47:17] Directive : debug - Record-Access +[2025-02-21 00:47:17] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:17] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:17] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:17] Proxy : info - proxy localhost:8088/ to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52686-GET /@vite/client +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@vite/client to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52704-GET /styles.css +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/styles.css to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52686-GET /polyfills.js +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/polyfills.js to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52704-GET /main.js +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/main.js to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52704-GET /@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/node_modules/@angular/build/node_modules/vite/dist/client/env.mjs to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52708-GET /styles.css.map +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/styles.css.map to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52714-GET / +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/?token=Dp-jPaCn4-43 to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52704-GET /@ng/component +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Fapp.component.ts%40AppComponent&t=1740070038676 to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52704-GET /chunk-AX5V5D76.js +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/chunk-AX5V5D76.js to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52708-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52732-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BCB6K4L3.js.map to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52720-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-FZUKNTOX.js.map to http://localhost:4200 +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-BY6A744E.js.map to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52738-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/chunk-4TL3YRJB.js.map to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52750-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52762-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_router.js.map to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/ng-zorro-antd_i18n.js.map to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52708-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_common_locales_zh.js.map to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52720-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_forms.js.map to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52732-GET /@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@fs/home/kingecg/code/gohttpAdmin/.angular/cache/19.1.8/gohttpAdmin/vite/deps/@angular_platform-browser_animations_async.js.map to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52750-GET /app.component.css.map +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/app.component.css.map to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52704-GET /@ng/component +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/@ng/component?c=src%2Fapp%2Flogin%2Flogin.component.ts%40LoginComponent&t=1740070038756 to http://localhost:4200 +[2025-02-21 00:47:18] Access : info - From 127.0.0.1:52732-GET /login.component.css.map +[2025-02-21 00:47:18] Access : info - match path: / +[2025-02-21 00:47:18] Directive : debug - Record-Access +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:47:18] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:47:18] Proxy : info - proxy localhost:8088/login.component.css.map to http://localhost:4200 +[2025-02-21 00:48:15] Access : info - From 127.0.0.1:52704-POST /api/login +[2025-02-21 00:48:15] Access : info - match path: /api/ +[2025-02-21 00:48:15] Directive : debug - Record-Access +[2025-02-21 00:48:15] Directive : debug - Set-Header Access-Control-Allow-Origin:* +[2025-02-21 00:48:15] Directive : debug - Set-Header Access-Control-Allow-Methods:GET, POST, PUT, DELETE, OPTIONS +[2025-02-21 00:48:15] Directive : debug - Set-Header Access-Control-Allow-Headers:Content-Type, Authorization, Content-Length, X-Requested-With +[2025-02-21 00:48:18] Route : debug - matching route: POST /login with GET /config/:id +[2025-02-21 00:48:18] Route : debug - method not match +[2025-02-21 00:48:18] Route : debug - matching route: POST /login with GET /about +[2025-02-21 00:48:18] Route : debug - method not match +[2025-02-21 00:48:18] Route : debug - matching route: POST /login with POST /config +[2025-02-21 00:48:18] Route : debug - matching route: POST /login with POST /login diff --git a/server/middleware.go b/server/middleware.go index 80b749f..c36d14a 100644 --- a/server/middleware.go +++ b/server/middleware.go @@ -108,7 +108,7 @@ func BasicAuth(w http.ResponseWriter, r *http.Request, next http.Handler) { func JwtAuth(w http.ResponseWriter, r *http.Request, next http.Handler) { l := gologger.GetLogger("JwtAuth") config := model.GetConfig() - jwtConfig := config.Jwt + jwtConfig := config.Admin.Jwt if jwtConfig.Secret == "" || path.Base(r.URL.Path) == "login" { next.ServeHTTP(w, r) return diff --git a/server/server.go b/server/server.go index 53d66a3..c390543 100644 --- a/server/server.go +++ b/server/server.go @@ -133,7 +133,7 @@ func (mux *RestMux) ServeHTTP(w http.ResponseWriter, r *http.Request) { http.NotFound(w, r) })) - return + } mux.wrapperHandler.ServeHTTP(w, r) // c := r.Context() @@ -154,7 +154,10 @@ func (mux *RestMux) ServeHTTP(w http.ResponseWriter, r *http.Request) { } func (mux *RestMux) HandleFunc(method string, path string, f func(http.ResponseWriter, *http.Request)) *Route { - r := NewRoute(method, path, http.HandlerFunc(f)) + r := NewRoute(method, path, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + w.Header().Set("Content-Type", "application/json") + f(w, r) + })) mux.routes = append(mux.routes, r) sort.Sort(mux.routes) return r diff --git a/vendor/modules.txt b/vendor/modules.txt index 85e6de4..7892405 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -24,6 +24,9 @@ github.com/go-playground/universal-translator # github.com/go-playground/validator/v10 v10.9.0 ## explicit; go 1.13 github.com/go-playground/validator/v10 +# github.com/golang-jwt/jwt/v5 v5.2.1 +## explicit; go 1.18 +github.com/golang-jwt/jwt/v5 # github.com/golang/protobuf v1.5.2 ## explicit; go 1.9 github.com/golang/protobuf/proto