Skip to content

Commit

Permalink
fix: SSL証明書のsubjectが指定されていないと通信できないクライアントに対応
Browse files Browse the repository at this point in the history
例) Node.js
tls requires a subject even when altNames are defined · Issue #11771 · nodejs/node
nodejs/node#11771
  • Loading branch information
tksugimoto committed Oct 16, 2019
1 parent 363ef33 commit e217e6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion https-server/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ openssl genrsa \
openssl req \
-new \
-key ${server_private_key_path} \
-subj "/" \
-subj "/O=MITM HTTPS SERVER" \
| openssl x509 \
-req \
-CAkey ${root_private_key_path} \
Expand Down

0 comments on commit e217e6e

Please sign in to comment.