我有Nuxt-js服务器,它正在运行https-但http不运行-我可以在Nuxt-js上运行http服务器
现在我的链接是https://00.00.0.00:8000/
,我可以使用https进入我的网站-但不能使用http-也许我可以添加一些重定向或其他内容?
谢谢
server: {
https: {
key: fs.readFileSync('/etc/letsencrypt/live/name/privkey.pem'),
cert: fs.readFileSync('/etc/letsencrypt/live/name/fullchain.pem'),
},
port: 8000,
host: '000.000.0.00',
},