Skip to content

Tag Archives: ssl

Create your own, self-signed Apache SSL certificates

The main reason to do this is to avoid certificate requests, etc.
While tried on gentoo linux, should work on any unix-like OS.
# openssl genrsa -des3 -out pass.key 1024 #this
# openssl genrsa -aes256 -out pass.key 2048 # or this
# openssl rsa -in pass.key -out server.key
# openssl req -new -key server.key -x509 -out server.crt -days 999
# cp […]