This question already asked but that not solving my issue.
I am trying to run my Angular-7 product using Server Side Rendering following steps:
- I create a build using this cmd
ng add @nguniversal/express-engine --clientProject - And start my universal app using this cmd
npm run build:ssr && npm run serve:ssr
After this step it creating the following folders & files:
Next steps in AWS:
- Move the dist over to your server
- install PM2
- npm install pm2 -g
- pm2 start dist/server.js
- Create a security group inbound with custom TCP
After I try to access my project url it shows like this

I don't know how to solve this problem. Thanks in advance.
