NodeJS and react app deployment on AWS: not rendering react UI
问题 I've deployed a nodejs and react app to AWS EC2 following this tutorial. I can see the static html title but react views are not rendering. Looking at the network tab I notice some 404 for the get request but I'm not sure where the issue is. Here is my nginx setup: server { listen 80; location / { proxy_pass http://{{my ec2 ip}}:{{5000}}; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http