This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# create-ca.sh - Script to create a Certificate Authority and generate certificates | |
# Create directory structure | |
mkdir -p ca/{root-ca,intermediate-ca,certs,private,crl,csr} | |
chmod 700 ca/private | |
# Create root CA configuration file | |
cat > ca/root-ca.conf << EOL | |
[ req ] |
OlderNewer