Docs / Getting Started / How to Set Up a Domain with SSL on Your Breeze

How to Set Up a Domain with SSL on Your Breeze

By Admin · Feb 25, 2026 · Updated Apr 23, 2026 · 70 views · 1 min read

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 -y

Step 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.com

Step 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

Was this article helpful?