我正在尝试配置SSL证书来运行我的React应用程序。 在我的start.js文件中,我指定了关键和确定的路径,如下所示:
const devServer = new WebpackDevServer(compiler, {
...serverConfig,
https: {
key: fs.readFileSync('./script/server.key', 'utf8'),
cert: fs.readFileSync('./script/server.crt', 'utf8'),
passphrase: 'XXX'
}
});
当我尝试运行应用程序时,出现错误:
error:06065064:digital envelope routines:EVP_DecryptFinal_ex:bad decrypt
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! appname@0.1.0 start: `set HTTPS=true&&react-scripts start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the appname@0.1.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
我尝试了一些在那里发现的潜在解决方案:
https://github.com/facebook/create-react-app/issues/1411
但他们都没有为我工作。
我还能做些什么来正确配置它并运行我的应用程序?