How to Install free SSL certificate on InterServer VPS – All Commands

Here are the commands to install free SSL certificate on InterServer VPS. Run these one by one.

apt update && apt install nginx -y
systemctl enable --now nginx
apt install certbot python3-certbot-nginx -y

Replace your domain name in the yourdomain.com.

certbot --nginx -d yourdomain.com -d www.yourdomain.com

Leave a Comment