blob: fe43e0cc6f9d7cc215aa33291167e81ba4d8ce72 [file] [log] [blame]
Sylvain Desbureaux16bdf242020-12-07 10:28:24 +01001The following self-signed certificates were created for testing only.
2You can replace them with your own if appropriate using this process or official certificates using what ever process is appropriate.
3
4
5# create key and csr
6openssl req -new -newkey rsa:2048 -nodes -keyout onap-robot.onap.key -out onap-robot.onap.csr
7
guillaume.lambert30ec3902021-09-14 12:32:24 +02008# sign csr
Sylvain Desbureaux16bdf242020-12-07 10:28:24 +01009# 10 year self signed certificate
10openssl x509 -req -days 3650 -in onap-robot.onap.csr -signkey onap-robot.onap.key -out onap-robot.onap.crt
11
12# create PEM for lighttpd server
13cat onap-robot.onap.key onap-robot.onap.crt > onap-robot.onap.pem