File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed
Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -467,25 +467,8 @@ jobs:
467467 sleep 1
468468 done
469469
470- # Debug: Check if nginx is actually running and listening
471- echo "=== Container Status ==="
472- docker compose ps
473- echo ""
474- echo "=== Backend logs ==="
475- docker compose logs purple-mcp-streamable-http | tail -30
476- echo ""
477- echo "=== Nginx logs ==="
478- docker compose logs purple-mcp-proxy | tail -20
479- echo ""
480- echo "=== Checking if nginx is listening on port 443 ==="
481- ss -tlnp | grep :443 || echo "Nothing listening on 443"
482- echo ""
483-
484470 # Test authentication: 401 without Authorization header
485471 echo "Testing auth: expecting 401 without auth header..."
486- echo "=== Curl verbose output ==="
487- curl -k -vv --max-time 10 https://localhost/ 2>&1 || true
488- echo ""
489472 http_code=$(curl -k -s -o /dev/null -w "%{http_code}" --max-time 10 https://localhost/)
490473 if [ "$http_code" != "401" ]; then
491474 echo "✗ Expected 401 without auth header, got $http_code"
You can’t perform that action at this time.
0 commit comments