[COMMON] Add and run pre-commit linters via tox
[oom.git] / kubernetes / robot / resources / config / lighttpd / ssl / README.TXT
1 The following self-signed certificates were created for testing only.
2 You 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
6 openssl 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
10 openssl 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
13 cat onap-robot.onap.key  onap-robot.onap.crt > onap-robot.onap.pem