island: Loosen permissions on ssl cert in create_certificate.sh

This commit is contained in:
Mike Salvatore 2021-06-10 07:38:29 -04:00
parent 118dfa53d4
commit 6a1a1721bd
1 changed files with 3 additions and 3 deletions

View File

@ -21,15 +21,15 @@ umask 377
echo "Generating key in $server_root/server.key..."
openssl genrsa -out "$server_root"/server.key 2048
chmod 400 "$server_root"/server.key
chmod 600 "$server_root"/server.key
echo "Generating csr in $server_root/server.csr..."
openssl req -new -key "$server_root"/server.key -out "$server_root"/server.csr -subj "/C=GB/ST=London/L=London/O=Global Security/OU=Monkey Department/CN=monkey.com"
chmod 400 "$server_root"/server.csr
chmod 600 "$server_root"/server.csr
echo "Generating certificate in $server_root/server.crt..."
openssl x509 -req -days 366 -in "$server_root"/server.csr -signkey "$server_root"/server.key -out "$server_root"/server.crt
chmod 400 "$server_root"/server.crt
chmod 600 "$server_root"/server.crt
# Shove some new random data into the file to override the original seed we put in.