Kevin Law

Results 11 comments of Kevin Law

For example, a site at `sub.example.com` and server has a proxy targets to `backend.example.com`. `backend.example.com` response a set-cookie header 'JSESSIONID=monster;Domain=example.com'. What I expected is this cookie would be set with...

I set up a Nginx proxy server with configuration like: ``` server { listen 80; listen [::]:80; server_name localhost; location /auth-static { proxy_pass http://172.16.148.220:30010/auth-static; } } ``` By default, Nginx...

Hello, any progress on this issue? It bothers me a little bit. Or need any further information? BTW, the https://github.com/http-party/node-http-proxy#options behaviors' what I expected, keeps the cookie domain value from...

This is exactly what I've been hunting for. I'm trying to find a way to support opening files with vscode and remote ssh, it's protcol should look like `vscode://vscode-remote/ssh-remote+host/home/file_to_open`. However,...

**"ycy.type"** 这里的值写成 url. ```JavaScript "ycy.type": "url", ```

A temporary solution here https://github.com/mhutchie/vscode-git-graph/issues/593#issuecomment-1899931392

Hey guys, it seems that **FORCE REFRESH** can be helpful. My setps are: 1. closing the chrome developer tools, 2. **FORCE REFRESH** (Ctrl + F5 or Ctrl + Shift +...

> 所以文档就在 404 路由 后面开一个二级标题 ## 扩展路由属性 分约定式路由(用 routeProps)和配置式路由(写在 routes 里面)两种情况介绍下用法吧 关于文档调整结构,我有个两个建议, 1. 把约定式路由下面的 “全局layout", "不同全局layout", "404路由“ 都作为2级标题。这些配置都不应该是约定式路由专属的,现在结构是约定式路由的下级。 2. 按照现在的说法, 只有约定式路由支持routeProps,所以这部分描述放在约定式路由的下级是不是更好?

@fz6m 这个PR是还需要提供些什么内容吗? 另外,关于开发代理这部分,我注意到 http-proxy-middleware这一类依赖被预先打包放到了 `bundler-utils` 包里面。 这里面的依赖比如 `http-proxy`模块需要更新该如何操作?直接提交打包之后的js代码吗?现在的`http-proxy`模块有一个在Nodejs 15 之后使用有的一个bugfix https://github.com/AdoKevin/node-http-proxy/commit/5e9b01dbe145f016a4d4137b116472fd08274f19 想提交。

一般来说, 这样的功能需要在请求库的请求拦截器中完成,和这个库没得关联。 如果是axios,参考 https://axios-http.com/docs/interceptors 。