ホームページ > 記事 > ウェブフロントエンド > Express を使用してローカルで HTTPS をテストする方法
今回は、Express がローカルで HTTPS をテストする方法と、Express がローカルで HTTPS をテストするための注意点について説明します。実際のケースを見てみましょう。
私の環境
Amazon (AWS) の ubuntu 仮想マシン。
node
openssl
証明書を生成する
次のコマンドを入力すると、現在のフォルダーでは、localhost.key と localhost.cert.
openssl genrsa -out localhost.key 2048 openssl req -new -x509 -key localhost.key -out localhost.cert -days 3650 -subj /CN=localhost
が生成されます。localhost はドメイン名です。別のドメイン名に変更したい場合は、上記の localhost をすべて自分のドメイン名に置き換えてください。
私を例に挙げてみましょう。 , I 仮想マシンのドメイン名は xxx.compute.amazonaws.com
です。上記のすべての localhost をこのドメイン名に置き換えるだけで、 ec2-34-220- が生成されます。 96-9.us-west -2.compute.amazonaws.com.key
および ec2-34-220-96-9.us-west-2.compute.amazonaws.com.cert code> 2 つのファイル。<code>xxx.compute.amazonaws.com
, 就以这个域名替换上面所有的localhost, 会生成, ec2-34-220-96-9.us-west-2.compute.amazonaws.com.key
和 ec2-34-220-96-9.us-west-2.compute.amazonaws.com.cert
两个文件.
更新
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365
如果不想用密码保护私钥, 加上-nodes.
加上-subj '/CN=localhost'
可以设置certificate的内容. 将其中的localhost
替换成你的域名.
参考:How to create a self-signed certificate with openssl?
代码
想要运行如下代码, 需要先安装包
npm init npm i -S https express
创建文件index.js, 内容如下.
#!/usr/bin/env node var https = require('https'); var fs = require('fs'); var express = require('express'); var host = 'xxx.compute.amazonaws.com'; // Input you domain name here. var options = { key: fs.readFileSync( './' + host + '.key' ), cert: fs.readFileSync( './' + host + '.cert' ), requestCert: false, rejectUnauthorized: false }; var httpApp = express(); var app = express(); app.get('/', function (req, res) { res.send('hi HTTPS'); }); httpApp.get('/', function (req, res) { res.send('hi HTTP'); }); httpApp.listen(80, function () { console.log('http on 80'); }); var server = https.createServer( options, app ); server.listen( 443, function () { console.log( 'https on 443' ); } );
启动服务器
sudo node index.js
访问
浏览器中输入http://xxx.compute.amazonaws.com/
就会以80端口访问HTTP服务器. 显示hi HTTP
.
输入https://xxx.compute.amazonaws.com/
就会以443端口访问HTTPS服务器, 显示hi HTTPS
rrreee 秘密キーをパスワードで保護したくない場合は、-nodes を追加します。
-subj '/CN=localhost を追加します'
を使用して証明書の内容を設定します。localhost
をドメイン名に置き換えます。参考: openssl で自己署名証明書を作成する方法
Code
If次のコードを実行したい場合は、最初にインストールする必要があります。 パッケージ
次の内容でファイルindex.jsを作成します。rrreeeサーバーを起動します
rrreee
httpと入力してくださいブラウザで ://xxx.compute.amazonaws.com/
HTTP サーバーはポート 80 でアクセスされます。hi HTTP
が表示されます 🎜🎜https:/ と入力します。 /xxx.compute.amazonaws.com/
と HTTPS はポート 443 サーバーでアクセスされ、hi HTTPS
が表示されます。🎜🎜🎜リファレンス🎜🎜🎜ノード用の自己署名付きの信頼できる証明書。 js & Express.js🎜🎜この記事の事例を読んだ後、あなたはその方法をマスターしたと思います。さらにエキサイティングです。php 中国語 Web サイトの他の関連記事にも注目してください。 🎜🎜推奨読書: 🎜🎜🎜JS操作ページの背景を暗くする🎜🎜🎜🎜🎜実際のプロジェクトでjquerylayurポップアップレイヤーを使用する方法🎜🎜🎜以上がExpress を使用してローカルで HTTPS をテストする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。