オレオレ証明書を一撃で作るワンライナー
なんかテストとかでオレオレ証明書がたくさん欲しいとき、いちいちインタラクティブに作成するのは面倒。
sudo openssl req -batch -new -x509 -newkey rsa:2048 -nodes -sha256 \
-subj /CN=example.com/O=oreore -days 3650 \
-keyout /etc/httpd/ssl.key/example.key \
-out /etc/httpd/ssl.crt/example.crt
こんな感じでたくさん作れます。
for x in {0..9}; do
sudo openssl req -batch -new -x509 -newkey rsa:2048 -nodes -sha256 \
-subj /CN=$x.example.com/O=oreore -days 3650 \
-keyout /etc/httpd/ssl.key/$x.key \
-out /etc/httpd/ssl.crt/$x.crt
done
Author And Source
この問題について(オレオレ証明書を一撃で作るワンライナー), 我々は、より多くの情報をここで見つけました https://qiita.com/ngyuki/items/27e56196fbf2d68a9f7f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .