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.