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

Configure Nginx SSLsecure web server—on a Fedora VPS—install with
dnf install nginx certbot-nginx
run
certbot --nginx
to setup SSL Edit /etc/nginx/conf d/site conf:
server { listen 443 ssl; ssl_certificate /etc/letsencrypt/live/domain.com/fullchain.pem; }
Open port:
firewall-cmd --add-service=https
On Hetzner test with
curl -I https://ip
—ensures phpMyAdmin uptime for VPS hosting

Back to All Tips