Web Hosting & VPS Tips

Unleash Your Server Potential with Expert Insights

Hosting provided by: Cloudways
Free to Try! Up to 40% Off!

Category: VPS Setup

Install Let’s Encrypt—a free SSL service—with Nginx proxy on a Debian VPS—install Certbot:
apt install certbot python3-certbot-nginx
run:
certbot --nginx -d domain.com
configure proxy in /etc/nginx/sites-available/domain:
location / { proxy_pass http://backend:8080; }
Open port:
ufw allow 443
On Linode test with
curl -I https://domain.com
Ensures uptime—secures phpMyAdmin with proxied VPS hosting

Back to All Tips