summaryrefslogtreecommitdiffstats
path: root/meta-openbmc-machines/meta-openpower/meta-ibm/recipes-httpd/nginx/files/gen-cert.sh
blob: 480266f3b27cc55f6c32a3f246bf2f5ec97d0364 (plain)
1
2
3
4
5
6
7
8
9
#!/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
OpenPOWER on IntegriCloud