mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 09:52:57 +00:00
- 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
17 lines
482 B
JSON
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"
|
|
}
|
|
}
|