Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
owners-plugin-test
/
3f5f55a7fc7eec09868cbfd018c583d84cb3624a
/
.
/
meta-ibm
/
recipes-httpd
/
nginx
/
files
/
gen-cert.sh
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