有个app的以前别人写的假服务用http访问可以,但是用https去访问就不行
看官方说schema里面配置一个https就可以了但是对我那个server没有用:
官方参考链接:
API Host and Base Path
后来领导给我发了个这个:
Node.js Express で HTTPSを利用するパターン #Node.js - Qiita
说是需要生成一个证书什么的放在options里面
var options = {
key: fs.readFileSync('../localhost.key'),
cert: fs.readFileSync('../localhost.crt')
};
这里的证书需要生成参考下面的链接里面生成证书的命令,然后放到server的最外层同一级目录下
生成证书命令:
openssl req -x509 -out localhost.crt -keyout localhost.key \
-newkey rsa:2048 -nodes -sha256 \
-subj '/CN=localhost' -extensions EXT -config <( \
printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")
参考链接:localhost 证书 - Let's Encrypt - 免费的SSL/TLS证书
然后在https里面加上这个参数重启服务就可以访问了
https = require("https");
https.createServer(options,app).listen(serverPort_https, function () {
console.log(
"Your server is listening on port %d (https://localhost:%d)",
serverPort_https,
serverPort_https
);文章来源:https://www.toymoban.com/news/detail-720925.html
);
});文章来源地址https://www.toymoban.com/news/detail-720925.html
到了这里,关于swagger stub https无法访问的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!