I've set up node.js and nginx on my server. Now I want to use it, but, before I start there are 2 questions:

  1. How should they work together? How should I handle the requests?
  2. There are 2 concepts for a Node.js server, which one is better:

    a. Create a separate http server for each website that needs it. Then load all javascript code at the start of the program, so the code is interpreted once.

    b. Create one single node.js server which handles all node.js requests. This reads the requested files and evals their contents. So the files are interpreted on each request, but the server logic is much simpler.

It's not clear for me how to use node.js correctly.

link|improve this question

feedback

3 Answers

up vote 105 down vote accepted

Nginx it works as front end server which in this case proxies the requests to a node.js server. Therefor you need to setup a nginx config file for node.

so this is what i have done in my ubuntu box :

create a the file yourdomain at /etc/nginx/sites-available/

vim /etc/nginx/sites-available/yourdomain

In it you should have something like:

# the IP(s) on which your node server is running i choose the port 3000
upstream app_yourdomian {
    server 127.0.0.1:3000;
}

# the nginx server instance
server {
    listen 0.0.0.0:80;
    server_name yourdomain.com yourdomain;
    access_log /var/log/nginx/yourdomain.log;

    # pass the request to the node.js server with the correct headers and much more can be added, see nginx config options
    location / {
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header Host $http_host;
      proxy_set_header X-NginX-Proxy true;

      proxy_pass http://app_yourdomain/;
      proxy_redirect off;
    }
 }

Once you have this setup you must enabled the site(the above config file)

cd /etc/nginx/sites-enabled/ 
ln -s /etc/nginx/sites-available/yourdomain yourdomain

Create your node server app at /var/www/yourdomain/app.js and make it run at localhost:3000

var http = require('http');

http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
    res.end('Hello World\n');
}).listen(3000, "127.0.0.1");
console.log('Server running at http://127.0.0.1:3000/');

Restart nginx

sudo /etc/init.d/nginx restart

Lastly start the server node

cd /var/www/yourdomain/ && node app.js

Now you should be see Hello World at yourdomain.com

One last work with regards to starting the node server, you should use some kind of monitoring system to monitor your node daemon so there is an awesome tutorial at http://howtonode.org/deploying-node-upstart-monit

Let me know if i missed something.

link|improve this answer
Thanks for your answer, this works! – Van Coding Feb 16 '11 at 12:42
Fantastic answer. Thank you. – littlejim84 Jun 9 '11 at 12:15
3  
Thanks for the post, will nginx cache node.js responses for the server above, or rerun them each time. – Lime Jul 19 '11 at 19:31
Really brilliant answer! – Asken Oct 28 '11 at 8:20
7  
Is there any reason why you can't just do location / { proxy_pass http://127.0.0.1:3000; }? Why do you need the whole upstream config bit? – Robin Winslow Nov 20 '11 at 23:59
show 2 more comments
feedback

answering your question 2:

I would use option b simply because it consumes much less resources. with option 'a', every client will cause the server to consume a lot of memory, loading all the files you need (even though i like php, this is one of the problems with it). With option 'b' you can load your libraries (reusable code) and share them among all client requests.

But be ware that if you have multiple cores you should tweak node.js to use all of them.

link|improve this answer
feedback

You can also setup multiple domain with nginx, forwarding to multiple node.js processes.

For example to achieve these:

/etc/nginx/sites-enabled/domain1

server {
    listen 80;
    server_name domain1.com;
    access_log /var/log/nginx/domain1.access.log;
    location / {
        proxy_pass    http://127.0.0.1:4000/;
    }
}

In /etc/nginx/sites-enabled/domain2

server {
    listen 80;
    server_name domain2.com;
    access_log /var/log/nginx/domain2.access.log;
    location / {
        proxy_pass    http://127.0.0.1:5000/;
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.