

# ls -la /var/www/vhosts/as-sellerie.fr/api.as-sellerie.fr/


BUG FIXED
I found the answer to the problem. I deleted the .htaccess file, there was no report.
PhusionPassenger did not detect the startup file "app.js".
For the proper functioning of the application you must create a file server.js which creates a server by pointing your file app.js.
View attachment 16645
Do not specify listening on a strict number as I have been able to do.
For example, for PhusionPassenger to work, write:
http.createServer(app).listen(process.env.PORT);
And not :
http.createServer(app).listen(5000);
________________________________________________________________________________________________________
*********************************************************************************************************
Thank you Igor for the time you spent trying to find a solution. I hope my post will help other users.
Thank you.



