ubantu配置nginx绑定域名以及与nodejs的相互配合

WBOY
Freigeben: 2016-07-29 08:58:48
Original
1227 Leute haben es durchsucht

这几天在学习微信js-sdk,我想实现在分享我的移动端网页时,能够自定义分享图标,简介等功能。菜鸟就只能多翻教程啦。

顺带学习了nginx绑定域名,一点一点记录下来,避免以后忘记ubantu配置nginx绑定域名以及与nodejs的相互配合

首先,这篇教程对我帮助挺大:http://www.cnblogs.com/skynet/p/4146083.html

确保按照上面的步骤安装好nginx之前的依赖包后,如果在编译nginx时,就用./configure  --with-pcre='/usr/local/src/pcrepath', 这样就能安装成功了。访问http://myvps_ip就回出现 welcome to nginx.

然后是配置nginx

不要理会解压nginx里面的nginx.config文件,因为安装后不在这里。

在/etc/nginx这个目录下, 在sites-enabled目录下的default【软连接,指向sites-available目录里面的default文件】才是配置的boss。进行修改:

在server_name: localhost上面添加:
root /home/www;
index index.html;

意思是把root路径指向/home/www目录【当然你要在home下先 mkdir www】,

然后把Server_name改成 : 我自己的域名:比如zhidaoer.com

这样就可以访问http://zhidaoer.com也能看到 welcom nginx页面了

然后只要在/home/www目录下放置你自己的项目目录里的html文件,就能访问该项目的页面啦。

然后怎么样与node.js进行配合使用我是参考了这篇文章:http://stackoverflow.com/questions/5009324/node-js-nginx-what-now,

基本照着这个走就行。在sites-available下建立zhidaoer.com文件,把相关代码拷入:

upstream app_zhidaoer {
    server 127.0.0.1:启动node的端口比如3000;
    keepalive 8;
}
# the nginx server instance
server {
    listen 0.0.0.0:80;
    server_name zhidaoer.com zhidaoer.com;
    access_log /var/log/nginx/zhidaoer.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://zhidaoer.com/;
      proxy_redirect off;
      #echo added the following
      proxy_http_version 1.1;
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection "upgrade";
    }
 }

按照文中方法做好软链接,吧自己的node工程放到/home/www目录下,然后npm install所需的包,如果报没有npm,就 apt-get install npm,之后再npm install;

然后重启nginx,  /etc/init.d/nginx restart, 然后启动node的www脚本。

假如node工程端口是3000,某个页面路由是goshop, 就通过访问http://zhidaoer.com:3000/goshop看到页面了。是不是很棒!

然后至于微信的分享功能,今天尝试着写了,但是还没生效,还正在找原因。有消息再继续记录。

以上就介绍了ubantu配置nginx绑定域名以及与nodejs的相互配合,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage