我想在我的本地网站上使用https。使用Nuxt框架,并创建一个nodejs服务器。
我遵循这些命令来创建密钥。
openssl genrsa 2048 > server.key
chmod 400 server.key
openssl req -new -x509 -nodes -sha256 -days 365 -key server.key -out server.crt
然后在我的服务器上有这些代码。
const app = express()
const path = require('path')
const fs = require('fs')
const option = {
https: {
key: fs.readFileSync(path.resolve(__dirname, 'server.key')),
cert: fs.readFileSync(path.resolve(__dirname, 'server.crt'))
}
}
const server = require('https').createServer(option, app)
server.listen(port, host)
我有主持人设置172.0.0.1 local.xxx.com
。
当我在Chrome https://local.xxx.com
上呼叫我的网站时>
我将收到错误:ERR_SSL_VERSION_OR_CIPHER_MISMATCH
尝试其他浏览器,出现类似错误
我想在我的本地网站上使用https。使用Nuxt框架,并创建一个nodejs服务器。我按照以下命令创建密钥。 openssl genrsa 2048> server.key chmod 400 server.key openssl req -...
修复它!