Hello,
I have thoroughly followed all of the steps and prerequisite tutorials in this link for my 22.04 Ubuntu droplet setup : https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-application-for-production-on-ubuntu-22-04
All of the steps seemed to be set correctly, I’ve checked nginx, ufw statuses, etc. Correctly set the localhost port to the port of my node.js app.
But when I try to test one of my application’s endpoint with postman - it doesn’t work.
When I call just the https://mydomain.com
, it returns the HTML of “Welcome to nginx!” page that I can see when I open the domain with the browser.
And when I try to call https://mydomain.com/endpoint
, it returns 404 error message.
Seems that somewhere the request is not being redirected/put through correctly. How would I go about debugging/fixing this?
Thank you.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Heya @martynassiska,
It seems to me like you haven’t properly configured your Nginx reverse proxy.
Can you share your Nginx configuration file that you created in the
/etc/nginx/sites-enabled
directory?