Securing your website with SSL certificates is essential for protecting user data and enhancing trust. On an Unmanaged Virtual Private Server (VPS), installing Let's Encrypt SSL certificates requires specific procedures based on your operating system and the presence of a control panel like cPanel.
Installing Let's Encrypt SSL on cPanel VPS
For VPS instances utilizing cPanel, the integration of Let's Encrypt is streamlined through AutoSSL. Follow these steps:
-
Access the VPS via SSH:
- Log in as the root user or a user with sudo privileges.
-
Install the Let's Encrypt AutoSSL Provider:
- Execute the command:
/scripts/install_lets_encrypt_autossl_provider
- This command installs the Let's Encrypt plugin for AutoSSL.
-
Configure AutoSSL in WHM:
- Navigate to Home > SSL/TLS > Manage AutoSSL.
- Select "Let's Encrypt" as the AutoSSL provider.
- Agree to the terms of service and save the configuration.
-
Issue SSL Certificates:
- To issue certificates for all users, use the "Run AutoSSL For All Users" feature.
- For individual users, select "Manage Users" and proceed accordingly.
Installing Let's Encrypt SSL on CentOS 6 without a Control Panel
For systems without a control panel, Certbot facilitates the installation of Let's Encrypt certificates.
-
Access the VPS via SSH:
Log in as the root user or a user with sudo privileges. -
Download and Install Certbot:
Execute the following commands:
-
wget https://dl.eff.org/certbot-auto
sudo mv certbot-auto /usr/local/bin/certbot-auto
sudo chown root /usr/local/bin/certbot-auto
sudo chmod 0755 /usr/local/bin/certbot-auto
- Obtain and Install the SSL Certificate:
For Apache servers:
- To ensure certificates renew automatically, add a cron job
This schedules the renewal process to run twice daily.
Installing Let's Encrypt SSL on CentOS 7 without a Control Panel
The procedure for CentOS 7 differs slightly due to the availability of the Extra Packages for Enterprise Linux (EPEL) repository.
-
Access the VPS via SSH:
Log in as the root user or a user with sudo privileges. -
Enable the EPEL Repository:
Execute:sudo yum install epel-release -
Install Certbot:
For Apache servers:sudo yum install certbot python2-certbot-apachesudo yum install certbot python2-certbot-nginx -
Obtain and Install the SSL Certificate:
For Apache:sudo certbot --apachesudo certbot --nginx -
Set Up Automatic Renewal:
Add the following cron job to automate renewals: