小程序模板網(wǎng)

Ubuntu 16.04 下部署Node.js+MySQL微信小程序商城

發(fā)布時(shí)間:2018-04-23 12:08 所屬欄目:小程序開發(fā)教程

本文檔為微信小程序商城NideShop服務(wù)端api的安裝部署教程
服務(wù)端api : https://github.com/tumobi/nideshop
微信小程序端 : https://github.com/tumobi/nideshop-mini-program

環(huán)境介紹

阿里云ECS Ubuntu 16.04 64

更新系統(tǒng)和安裝git、vim、curl


apt update -y
apt upgrade -y
apt install curl git -y

通過nvm安裝node.js

  • 安裝nvm


curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash

nvm安裝成功后,關(guān)閉當(dāng)前終端,重新連接
驗(yàn)證安裝是否成功


nvm --version

看到輸出版本信息0.33.2表示安裝成功

  • 查看Node.js版本并安裝


nvm ls-remote
nvm install v8.2.1
node -v

看到輸出版本信息v8.2.1表示安裝成功

安裝MySQL 5.7


apt  install mysql-server -y

安裝過程會(huì)要求設(shè)置mysql的密碼,并記住密碼

驗(yàn)證mysql是否安裝成功


mysql -uroot -p

回車后輸入安裝時(shí)輸入的密碼,登錄成功后的樣子

 

登錄成功后

登錄成功后

開始運(yùn)行NideShop

  • 下載NideShop的源碼


mkdir /var/www
cd /var/www
git clone https://github.com/tumobi/nideshop
  • 全局安裝ThinkJS


npm install thinkjs@2 -g 
thinkjs --version
  • 安裝依賴


cd /var/www/nideshop
npm install
  • 創(chuàng)建數(shù)據(jù)庫(kù)并導(dǎo)入數(shù)據(jù)


 mysql -uroot -p -e "create database nideshop character set utf8mb4"
 mysql -uroot -p nideshop < /var/www/nideshop/nideshop.sql
  • 修改nideshop的數(shù)據(jù)庫(kù)配置db.js


vim src/common/config/db.js

修改后

 

配置數(shù)據(jù)庫(kù)信息

配置數(shù)據(jù)庫(kù)信息

注意encoding,prefix的值

編譯項(xiàng)目


npm run compile

以生產(chǎn)模式啟動(dòng)


node www/production.js

打開另一個(gè)終端驗(yàn)證是否啟動(dòng)成功


curl -I http://127.0.0.1:8360/

輸出HTTP/1.1 200 OK,則表示成功
Ctrl + C停止運(yùn)行

為防止后面操作出現(xiàn)[Error] Error: Address already in use, port:8360. 的錯(cuò)誤,一定要記得Ctrl + C停止運(yùn)行,并確保curl -I http://127.0.0.1:8360/不能訪問

使用 PM2 管理服務(wù)

  • 安裝配置pm2


npm install -g pm2

修改項(xiàng)目根目錄下的pm2.json為:


vim pm2.json

修改后的內(nèi)容如下 :


{
  "apps": [{
    "name": "nideshop",
    "script": "www/production.js",
    "cwd": "/var/www/nideshop",
    "exec_mode": "cluster",
    "instances": 1,
    "max_memory_restart": "256M",
    "autorestart": true,
    "node_args": [],
    "args": [],
    "env": {

    }
  }]
}

如果服務(wù)器配置較高,可適當(dāng)調(diào)整max_memory_restart和instances的值

  • 啟動(dòng)pm2


pm2 startOrReload pm2.json

成功啟動(dòng)

成功啟動(dòng)

成功啟動(dòng)

 

再次驗(yàn)證是否可以訪問


curl -I http://127.0.0.1:8360/

使用 nginx 做反向代理


apt install nginx -y

測(cè)試本地是否可以正常訪問


curl -I localhost

修改nginx配置


cp  /etc/nginx/sites-available/default  /etc/nginx/sites-available/default.bak
vim /etc/nginx/sites-available/default

修改后的內(nèi)容


server {
    listen 80;
    server_name www.nideshop.com nideshop.com;  #此處改為你的域名
    root /var/www/nideshop;
    set $node_port 8360;

    index index.js index.html index.htm;
    if ( -f $request_filename/index.html ){
        rewrite (.*) $1/index.html break;
    }
    if ( !-f $request_filename ){
        rewrite (.*) /index.js;
    }
    location = /index.js {
        proxy_http_version 1.1;
        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_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_pass http://127.0.0.1:$node_port$request_uri;
        proxy_redirect off;
    }
    
    location = /development.js {
        deny all;
    }

    location = /testing.js {
        deny all;
    }

    location = /production.js {
        deny all;
    }

    location ~ /static/ {
        etag         on;
        expires      max;
    }
}
  • 重新啟動(dòng)nginx并驗(yàn)證nginx是否還可以正常訪問


nginx -t 
service nginx restart
curl  http://127.0.0.1/

如果返回的是下圖的json數(shù)據(jù)則表示nginx反向代理配置成功

nginx轉(zhuǎn)發(fā)成功

nginx轉(zhuǎn)發(fā)成功

注:阿里云默認(rèn)外網(wǎng)不能訪問80/443端口,請(qǐng)更改實(shí)例的安全組配置,配置教程:https://help.aliyun.com/document_detail/25475.html?spm=5176.doc25475.3.3.ZAx4Uo

配置https訪問

  • 安裝certbot


apt install software-properties-common
add-apt-repository ppa:certbot/certbot
apt update -y
apt install python-certbot-nginx  -y
certbot --nginx
  • 配置自動(dòng)更新證書


certbot renew --dry-run

詳情文檔請(qǐng)查看:https://certbot.eff.org/#ubuntuxenial-nginx

  • 測(cè)試瀏覽器使用https形式訪問是否成功

     

    配置https訪問成功

    配置https訪問成功

修改NideShop微信小程序客戶端的配置

微信小程序商城客戶端GitHub: https://github.com/tumobi/nideshop-mini-program
打開文件config/api.js,修改NewApiRootUrl為自己的域名


var NewApiRootUrl = 'https://www.nideshop.com/api/';

注意https和后面的api/不能少

到此部署成功。



易優(yōu)小程序(企業(yè)版)+靈活api+前后代碼開源 碼云倉(cāng)庫(kù):starfork
本文地址:http://22321a.com/wxmini/doc/course/23931.html 復(fù)制鏈接 如需定制請(qǐng)聯(lián)系易優(yōu)客服咨詢:800182392 點(diǎn)擊咨詢
QQ在線咨詢