blob: 4a56cb5dfaeeea41c0c9d2a2c50cfd2f2892b9a3 [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
8# sign csr
9# 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