quantumtaskai-caprover/dokploy.json
thecyberlearn 01d3854194 Add comprehensive Django debug logging for 404 troubleshooting
- Container and port 3000 are working (simple HTTP server test passed)
- Issue is Django-specific routing, not Dokploy
- Added debug middleware to log all incoming requests
- Added debug_settings.py with enhanced logging and URL pattern display
- Updated Dockerfile.dokploy.debug to use debug settings
- Added proper ALLOWED_HOSTS with full domain
- This will show us exactly which requests Django receives and how it responds
2025-09-05 09:33:25 +05:30

17 lines
482 B
JSON

{
"name": "quantum-tasks-ai",
"type": "dockerfile",
"dockerfile": "./Dockerfile.dokploy.debug",
"port": 3000,
"healthCheck": "/health/",
"buildArgs": {},
"buildOptions": ["--no-cache"],
"env": {
"PYTHONUNBUFFERED": "1",
"DEBUG": "true",
"SECRET_KEY": "debug-key-change-in-production-123456789",
"ALLOWED_HOSTS": "website-quantumtaskai-wrczik-cc50ac-31-97-62-205.traefik.me,localhost,127.0.0.1,*",
"DOKPLOY_PROJECT_NAME": "quantum-tasks-ai"
}
}