diff --git a/DEPLOYMENT_GUIDE.md b/DEPLOYMENT_GUIDE.md index 9701649..2289780 100644 --- a/DEPLOYMENT_GUIDE.md +++ b/DEPLOYMENT_GUIDE.md @@ -74,7 +74,7 @@ sudo nginx -t ```bash # Get SSL certificate (Certbot handles NGINX config automatically) -sudo certbot --nginx -d portal.blackcanyontickets.com +sudo certbot --nginx -d bct.crispygoat.com # Reload NGINX with SSL sudo systemctl reload nginx @@ -141,9 +141,9 @@ npm run docker:astro:up ### Service URLs -- **Main App**: https://portal.blackcanyontickets.com -- **Admin Panel**: https://portal.blackcanyontickets.com/admin -- **Health Check**: https://portal.blackcanyontickets.com/api/health +- **Main App**: https://bct.crispygoat.com +- **Admin Panel**: https://bct.crispygoat.com/admin +- **Health Check**: https://bct.crispygoat.com/api/health ## Available Commands diff --git a/nginx-example.conf b/nginx-example.conf index 196d362..939bb7a 100644 --- a/nginx-example.conf +++ b/nginx-example.conf @@ -4,11 +4,11 @@ server { listen 80; listen 443 ssl http2; - server_name portal.blackcanyontickets.com; + server_name bct.crispygoat.com; # SSL Configuration - Certbot will handle this - ssl_certificate /etc/letsencrypt/live/portal.blackcanyontickets.com/fullchain.pem; - ssl_certificate_key /etc/letsencrypt/live/portal.blackcanyontickets.com/privkey.pem; + ssl_certificate /etc/letsencrypt/live/bct.crispygoat.com/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/bct.crispygoat.com/privkey.pem; # Security headers add_header X-Frame-Options "SAMEORIGIN" always;