From d8e4818a9f8a13d1f27ebf5334432f7f93eaeaed Mon Sep 17 00:00:00 2001 From: dzinesco Date: Sat, 12 Jul 2025 19:23:48 -0600 Subject: [PATCH] fix: Update domain references to bct.crispygoat.com MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update NGINX configuration for correct domain - Update deployment guide with proper SSL certificate paths - Update service URLs in documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- DEPLOYMENT_GUIDE.md | 8 ++++---- nginx-example.conf | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) 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;