Skip to content

Commit 73cd4db

Browse files
committed
fix: SSL証明書のsubjectが指定されていないと通信できないクライアントに対応
例) Node.js tls requires a subject even when altNames are defined · Issue #11771 · nodejs/node nodejs/node#11771
1 parent 8553ae3 commit 73cd4db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

https-server/start.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ openssl genrsa \
2727
openssl req \
2828
-new \
2929
-key ${server_private_key_path} \
30-
-subj "/" \
30+
-subj "/O=MITM HTTPS SERVER" \
3131
| openssl x509 \
3232
-req \
3333
-CAkey ${root_private_key_path} \

0 commit comments

Comments
 (0)