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

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