NGINX Install #19
-
Running into several issues programming the Pi. The main show stopper is installing NGINX. After running "sudo apt-get install nginx" I get nothing but 404 errors. Any insights? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 14 replies
-
Hmm, few things to debug/paste the output of here...
sudo systemctl restart nginx
sudo systemctl status nginx # paste the output of this here
journalctl -xe # paste the output of this here This will tell us if nginx is starting correctly. Will need more info to debug further, but hopefully this is a good start...let me know if you find the solution though! |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Hmm, few things to debug/paste the output of here...
This will tell us if nginx is starting correctly.
4. Can you confirm the ports set in
.env
in the website folder (should be port 3000)?5. Is your server running? Run
ps aux | grep node
and see if anything pops up.Will need more info to debug further, but hopefully this is a good start...let me know if you f…