I was developing the app on the remote EC2 server. So I have something like ec2-user/nextjsapp/ and spinning up localhost:3000 was no problem, I'd listen on the remote IP at port 3000.
Now I would like to publish it at a subdomain, without using a port (setting up port 80 to listen) but I am having trouble running next start -p 80 after I do next build within that folder.
What is the process to get the bundled, production ready nextjs app running?
Thanks 😃