server { listen 80; root /usr/share/nginx/html; index index.html; location /api/ { proxy_pass http://api:3000; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_cookie_path / /; } location / { try_files $uri /index.html; } }