# Nginx configuration for development environment events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; # Development logging access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log debug; # Basic settings sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; root /usr/share/nginx/html; index index.html; # Disable caching for development add_header Cache-Control "no-cache, no-store, must-revalidate"; add_header Pragma "no-cache"; add_header Expires "0"; # Main dashboard location / { try_files $uri $uri/ /index.html; } # API proxy to COBY app location /api/ { proxy_pass http://coby-app:8080/; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_cache_bypass $http_upgrade; proxy_read_timeout 86400; } # WebSocket proxy location /ws/ { proxy_pass http://coby-app:8081/; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_read_timeout 86400; } # Health check location /health { access_log off; return 200 "healthy\n"; add_header Content-Type text/plain; } } }