nginx and node.js配合使用 helloworld
Posted 前端客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx and node.js配合使用 helloworld相关的知识,希望对你有一定的参考价值。
nginx是最好的反向代理服务器。
Node.js是。。。 好吧 ,不介绍了,猛击这里
现在小介绍下怎么用nginx和node.js配合使用。
先写个helloworld.js
- var http = require(‘http‘);
- http.createServer(function (request, response) {
- response.writeHead(200, {‘Content-Type‘: ‘text/plain‘});
- response.end(‘hello world\n‘);
- }).listen(8000);
- console.log(‘Server running at http://127.0.0.1:8000/‘);
然后用node helloworld.js指令开启,这样跑在本地的机子的nodejs的程序就算开起来了,占用的是8000端口,可自己修改。
接着,我们在nginx的vhost.conf里面写一个server
- server {
- listen 80;
- server_name taqing.me www.taqing.me;
- location / {
- proxy_pass http://127.0.0.1:8000;
- }
- }
将网站域名设置好,然后端口设置为80,最后proxy_pass设置为http://127.0.0.1:8000,将所有从taqing.me:80的请求传递到nodejs程序去。
重启nginx
访问域名,就可以了看到helloworld了。
虽然node.js本身就可以做服务器是没错啦,比如welcome.js里面设置为80端口就可以了。
但是一个机子跑多个网站,其他网站又是用别的服务器,在80端口已经被占用的情况下,是可以用代理到别的端口来处理的。
以上是关于nginx and node.js配合使用 helloworld的主要内容,如果未能解决你的问题,请参考以下文章
安装使用Mongoose配合Node.js操作MongoDB的基础教程转载
仅使用 Node.js 与将 Node.js 与 Apache/Nginx 一起使用