For administrators managing Hostaday VPS or Dedicated Servers running Apache :
- Upload Files: Upload your certificate files (.crt and .ca-bundle) to your server.
- Edit Config: Locate your Apache configuration file (e.g.,
httpd.conforssl.conf). - Define Paths: Add or edit the following directives inside the
<VirtualHost *:443>block:SSLCertificateFile(Path to your CRT file)SSLCertificateKeyFile(Path to your Private Key)SSLCertificateChainFile(Path to your CA Bundle)
- Restart: Save the file and restart Apache using
service httpd restart.