Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel

/etc/ssl/private/ # Only view-able by root and a good location for the private keys
/etc/ssl/certs/ # Location for the

Store the CA certificates into the publicly view-able folder,

Code Block
languagebash
sudo mv *.pem /ect/ssl/certs
sudo mv *.crt /etc/ssl/certs

Store the private key into the protected folder,

Code Block
languagebash
sudo mv www.myrapham.com_server.key /etc/ssl/private

...

Apache Setup

First enable the module in Apache,

...