"secure" Webpack,devServer 代理是什么意思?



来自webpack(DevServer)的官方页面,
安全属性写为'false',解释如下:

module.exports = {
//...
devServer: {
proxy: {
'/api': {
target: 'https://other-server.example.com',
secure: false,
},
},
},
};
In the function, you get access to the request, response, and proxy options.
Return null or undefined to continue processing the request with proxy.
Return false to produce a 404 error for the request.
Return a path to serve from, instead of continuing to proxy the request.

我的问题可能有点傻,
但是"安全"属性表示
返回false以对请求产生404错误

?我只是第一次设置这些道具,
所以如果理解得更清楚会更好。

谢谢!

secure: true的含义:

使用无效证书运行在HTTPS上的后端服务器将不会默认接受

所以如果你想接受无效的(错误配置,损坏的证书链,吊销等)证书,请使用secure: false

相关内容

  • 没有找到相关文章

最新更新