Complete guide to connecting a domain and securing it with HTTPS.
Step 1: Point Your Domain
At your domain registrar, add an A record pointing to your Breeze's IP address.
Step 2: Install Your Web Server
apt install nginx -yStep 3: Create Server Block
Create /etc/nginx/sites-available/example.com with your domain name.
Step 4: Get SSL Certificate
apt install certbot python3-certbot-nginx -y\ncertbot --nginx -d example.com -d www.example.comStep 5: Verify
Visit https://example.com — you should see a secure connection with a valid certificate.
Auto-Renewal
Certbot automatically renews certificates. Verify with:
certbot renew --dry-run