美文网首页
阿里云ubuntu服务器 node.js环境搭建

阿里云ubuntu服务器 node.js环境搭建

作者: vincent_yang | 来源:发表于2016-05-20 14:35 被阅读0次

    准备一台阿里云服务器

    apt-get update更新源 (类似于node npm)

    apt-get install -y curl 安装curl 用来下载资源用的

    curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -  下载node安装脚本

    apt-get install nodejs 安装nodejs

    node -v ; npm -v 分别查看node和npm 是否安装了

    apt-get install mysql-server

    apt-get install mysql-client

    apt-get install libmysqlclient-dev

    mysql -uroot -p 登录mysql

    配置nginx反向代理(输入xxx.com这个域名的时候,代理到127.0.0.1:3000这个端口或者127.0.0.1:4000这个端口)

    upstream crawl{

    ip_hash;

    server 127.0.0.1:3000 weight=10;

    server 127.0.0.1:4000 weight=1;

    }

    server {

    listen 80;

    server_name www.zfpx.com;

    location / {

    proxy_pass http://crawl;

    }

    }

    相关文章

      网友评论

          本文标题:阿里云ubuntu服务器 node.js环境搭建

          本文链接:https://www.haomeiwen.com/subject/sovehttx.html