首页 > 代码库 > nginx and node.js配合使用 helloworld
nginx and node.js配合使用 helloworld
nginx是最好的反向代理服务器。
Node.js是。。。 好吧 ,不介绍了,猛击这里
现在小介绍下怎么用nginx和node.js配合使用。
先写个helloworld.js
[javascript] view plain copy
print?
- 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
[python] view plain copy
print?
- 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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。