blob: 480266f3b27cc55f6c32a3f246bf2f5ec97d0364 [file] [log] [blame]
#!/bin/sh
PEM="/etc/ssl/certs/nginx/cert.pem"
if [ ! -f $PEM ]; then
openssl req -x509 -sha256 -newkey rsa:2048 -keyout $PEM -out $PEM \
-days 3650 -subj "/O=openbmc-project.xyz/CN=localhost" \
-nodes
fi