SSL Certificates
All production deployments should use HTTPS. The simplest approach depends on your reverse proxy.
Caddy (automatic)
Caddy provisions and renews Let’s Encrypt certificates automatically. No additional configuration is needed beyond the Caddyfile shown in Reverse Proxy.
Certbot (Nginx)
Install Certbot and obtain a certificate:
sudo apt install certbot python3-certbot-nginx
sudo certbot certonly --webroot -w /var/www/certbot -d your-domain.comOr use the Nginx plugin:
sudo certbot --nginx -d your-domain.comCertbot sets up automatic renewal via a systemd timer. Verify with:
sudo certbot renew --dry-runTraefik (automatic)
Traefik handles certificates automatically when a certresolver is configured. The labels shown in Reverse Proxy reference a resolver named letsencrypt. Define it in your Traefik static configuration:
certificatesResolvers:
letsencrypt:
acme:
email: [email protected]
storage: /letsencrypt/acme.json
httpChallenge:
entryPoint: webSecurity recommendations
- Always redirect HTTP to HTTPS.
- Only expose ports 80 and 443 through your firewall.
- Keep your reverse proxy and SSL libraries up to date.
- Monitor certificate expiration to avoid unexpected downtime.
Last updated on