centos 7上的nestjs swagger-ui SSL_PROTOCOL_ERR

owfi6suc  于 2023-06-05  发布在  其他
关注(0)|答案(1)|浏览(146)

在npm启动后从本地PC连接到swagger时
API PATH:'api'
Request URL: http://localhost:11002/api/
Request URL: http://localhost:11002/api/swagger-ui-bundle.js
swagger docs web正常打开!
我在centos7上配置了相同的项目。
API PATH:'api'
Request URL: http://10.62.130.54:11002/api/
Request URL: https://10.62.130.54:11002/api/swagger-ui-bundle.js
页面没有找到!SSL协议错误
为什么要尝试HTTPS?
谢谢!!

- @nestjs/swagger@5.2.1 swagger-ui-express@4.5.0

hkmswyz6

hkmswyz61#

对域使用localhost(在您的示例中,为http://localhost:11002/api/),使用localhost解析时假定源是可信的

相关问题