Fix domain typo: oliver.solution → oliver.solutions everywhere

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Vadym Samoilenko 2026-03-19 21:06:09 +00:00
parent 32aea6e1a6
commit be052db7af
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@
# SSL is terminated by the upstream load balancer
<VirtualHost *:80>
ServerName optical-dev.oliver.solution
ServerName optical-dev.oliver.solutions
# Security headers
Header always set X-Content-Type-Options "nosniff"

View file

@ -139,8 +139,8 @@ if [[ ! -f .env ]]; then
fi
# Ensure ALLOWED_ORIGINS contains the production domain
if ! grep -q "optical-dev.oliver.solution" .env; then
warn "ALLOWED_ORIGINS may not include https://optical-dev.oliver.solution — please verify"
if ! grep -q "optical-dev.oliver.solutions" .env; then
warn "ALLOWED_ORIGINS may not include https://optical-dev.oliver.solutions — please verify"
fi
# Warn on default secrets
@ -302,7 +302,7 @@ docker compose -f docker-compose.yml -f docker-compose.prod.yml ps
echo ""
if [[ $FAIL -eq 0 ]]; then
info "Deploy complete. Visit https://optical-dev.oliver.solution/ppt-tool/"
info "Deploy complete. Visit https://optical-dev.oliver.solutions/ppt-tool/"
else
warn "Deploy finished with warnings. Review above messages."
fi