fix: Update domain references to bct.crispygoat.com

- 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 <noreply@anthropic.com>
This commit is contained in:
2025-07-12 19:23:48 -06:00
parent 14917a3e13
commit d8e4818a9f
2 changed files with 7 additions and 7 deletions

View File

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

View File

@@ -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;