ChristianTF
New Pleskian
Hi guys, I have a centOS 7 server running and a nodejs(12.10) instance that is trying to be ran. The plesk desktop says that it is active and working but whenever I try to make a get request to the endpoint (using Postman) I get a response back in html
```
<HTML>
<HEAD>
<TITLE>404 Not Found</TITLE>
<BASE href="/error_docs/">
<!--[if lte IE 6]></BASE><![endif]-->
</HEAD>
<BODY>
<H1>Not Found</H1>
The requested document was not found on this server.
<P>
<HR>
<ADDRESS>
Web Server at mywebsite.com
</ADDRESS>
</BODY>
</HTML>
```
whenever I ssh and navigate to the folder and run the script `$ npm run watch-server` it starts up and connects to the remote db just fine. Still whenever I make a request to the endpoint I still get the same response. with the html. The `name.conf` is pretty basic with just accepting ip addresses and sha1 fingerprints.
When configuring the server I see that the application root is `httpdocs/server` and then under the Access to configuration Files I have the `server.js` and `package.json` in my package.json I made sure it is pointing to the `server.js`
I don't know what other information is relevant. Thanks for your help!
```
<HTML>
<HEAD>
<TITLE>404 Not Found</TITLE>
<BASE href="/error_docs/">
<!--[if lte IE 6]></BASE><![endif]-->
</HEAD>
<BODY>
<H1>Not Found</H1>
The requested document was not found on this server.
<P>
<HR>
<ADDRESS>
Web Server at mywebsite.com
</ADDRESS>
</BODY>
</HTML>
```
whenever I ssh and navigate to the folder and run the script `$ npm run watch-server` it starts up and connects to the remote db just fine. Still whenever I make a request to the endpoint I still get the same response. with the html. The `name.conf` is pretty basic with just accepting ip addresses and sha1 fingerprints.
When configuring the server I see that the application root is `httpdocs/server` and then under the Access to configuration Files I have the `server.js` and `package.json` in my package.json I made sure it is pointing to the `server.js`
I don't know what other information is relevant. Thanks for your help!