LINUX下用Nginx和Node.js构建一个简单的项目(3)
下面配置Nginx,需要在Nginx中添加一个监听server来转发url请求,编辑Nginx的配置文件
# vi /alidata/server/nginx-1.4.4/conf/nginx.conf
在http大括号内添加一个server信息,监听启动端口80.
server {
listen 80;//监听80端口
server_name (服务器或域名,前面不加http://);
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://(服务器或域名):8000;//设置转发的请求url
#root html;
#index index.html index.htm;
}
}
重启nginx服务器
# /etc/init.d/nginx restart
运行hello.js文件
# node hello.js
在浏览器地址中输入http://(服务器地址或域名)
浏览器中显示与之前一样
到此,就已经用Nginx和Node.js构建出了一个简单的项目。