我想部署一个仅供内部使用的webapp。此Web应用正在向其他内部服务发出POST请求。问题是这些服务
与TLS一起运行。默认情况下,部署在云上运行的webapp已激活HTTPS。因此,我无法向服务启动任何HTTP POST请求。
你知道我如何在没有TLS/HTTPS的情况下部署应用程序吗?
代码段:
console.log('Starting Import: ' + this.urlString)
const xmlHttp = new XMLHttpRequest()
xmlHttp.open('POST', this.urlString, true)
xmlHttp.send(null)
console.log(xmlHttp.responseText)
日志:
Starting Import: https://34.95.76.221/importer/start/CATALOG001?file=test.xml
Importer-Controls.vue:103 POST https://34.95.76.221/importer/start/CATALOG001?file=test.xml net::ERR_CONNECTION_CLOSED