Posts by Cléverton Heming • 39 points
2 posts
-
3
votes2
answers399
viewsA: Using Node.js and PHP on the same server (Amazon EC2)
According to Eduardo’s answer, you can use APACHE together with Nodejs, in separate ports. I advise you to put in front of Nodejs APACHE or NGINX as a reverse proxy, so it is only necessary to let…
-
1
votes1
answer951
viewsA: How to run different Node.js sites on the same server?
you can use NGINX as a reverse proxy in front of Nodejs. In this approach you can run several processes with NODEJS, each in a port and configure in NGINX a subdomain for each process/API, so you…