0

このような自己署名証明書を作成しました

#!/bin/bash

EXPIRE=3650

if [ $# -gt 1 ]; then

  EXPIRE=$2  

fi

mkdir -p $1
cd $1

openssl genrsa 2048 > $1.key
openssl req -new -x509 -nodes -sha1 -days $EXPIRE -key $1.key > $1.cert
openssl x509 -noout -fingerprint -text < $1.cert > $1.info

cat $1.cert $1.key > $1.pem
chmod 400 $1.key $1.pem

そして、この証明書を使用するようにApache vhostを構成しました。

ここで、ブラウザーにすべて問題がないことを伝えるために、クライアントのストレージ (chrome または firefox) にどのファイルをインポートする必要があるのか​​ 疑問に思います!

4

0 に答える 0