generate selfsinged key
Generate a 8k x509 self signed ssl key for usage with a web-server like apache2 where both keys are in the same file:
openssl req -newkey rsa:$((1024*8)) -new -x509 -days 9999 -nodes -out apache.pem -keyout apache.pem
Generate a 8k x509 self signed ssl key for usage with a web-server like apache2 where both keys are in the same file:
openssl req -newkey rsa:$((1024*8)) -new -x509 -days 9999 -nodes -out apache.pem -keyout apache.pem