https后端无法访问
来源:10-2 https服务搭建
慕妹5586176
2020-12-28
老师,请问一下,为什么我后端访问不了https://xhyiyuan.xyz:18082/,提示无法访问此网站
privateKey = fs.readFileSync(’./https/4836128_xhyiyuan.xyz.key’, ‘utf-8’)
const pem = fs.readFileSync(’./https/4836128_xhyiyuan.xyz.pem’, ‘utf-8’)
const credentials = { key: privateKey, cert: pem }
const httpsServer = https.createServer(credentials, app)
app.use(bodyParser.json())
app.use(require(‘cors’)())
app.use(bodyParser.text({ type: ‘text/html’ }))
httpsServer.listen(18082, () => {
console.log(‘https://xhyiyuan.xyz’)
})
写回答
1回答
-
扬_灵
2020-12-29
同学你好,https后端在node启动后,你可以直接点击控制台中的地址进行访问,这里启动的地址应该是https://localhost:18082视频中老师能通过https://book.xxx 这种方式是因为在SwitchHosts中进行了设置。
00
相似问题