Himen
Himen

Reputation: 1450

Host multiple app which has been written by node using just a single server

I have just a single VPS, but i want to host multiple node.js app on it. (like Apache or nginx) I use nginx for proxy but there is a worry sense. You know well; The most important features of Node are I/O non blocking and single threading. If I use this paradigm (nginx proxy), Will I miss this features ? How I can handle this anxiety?

Upvotes: 0

Views: 54

Answers (1)

asp_net
asp_net

Reputation: 3597

I've written something about that lately, take a look: https://github.com/aspnetde/nodejs-webserver-guide

Upvotes: 1

Related Questions