環(huán)境介紹阿里云ECS Ubuntu 16.04 64 更新系統(tǒng)和安裝git、vim、curlapt update -y apt upgrade -y apt install curl git -y 通過nvm安裝node.js
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash
nvm安裝成功后,關(guān)閉當(dāng)前終端,重新連接 nvm --version 看到輸出版本信息0.33.2表示安裝成功
nvm ls-remote nvm install v8.2.1 node -v 看到輸出版本信息v8.2.1表示安裝成功 安裝MySQL 5.7apt install mysql-server -y 安裝過程會(huì)要求設(shè)置mysql的密碼,并記住密碼 驗(yàn)證mysql是否安裝成功 mysql -uroot -p 回車后輸入安裝時(shí)輸入的密碼,登錄成功后的樣子
登錄成功后 開始運(yùn)行NideShop
mkdir /var/www cd /var/www git clone https://github.com/tumobi/nideshop
npm install thinkjs@2 -g thinkjs --version
cd /var/www/nideshop npm install
mysql -uroot -p -e "create database nideshop character set utf8mb4" mysql -uroot -p nideshop < /var/www/nideshop/nideshop.sql
vim src/common/config/db.js 修改后
配置數(shù)據(jù)庫(kù)信息
編譯項(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,則表示成功
使用 PM2 管理服務(wù)
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的值
pm2 startOrReload pm2.json 成功啟動(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; } }
nginx -t service nginx restart curl http://127.0.0.1/ 如果返回的是下圖的json數(shù)據(jù)則表示nginx反向代理配置成功
nginx轉(zhuǎn)發(fā)成功
配置https訪問
apt install software-properties-common add-apt-repository ppa:certbot/certbot apt update -y apt install python-certbot-nginx -y certbot --nginx
certbot renew --dry-run
修改NideShop微信小程序客戶端的配置
微信小程序商城客戶端GitHub: https://github.com/tumobi/nideshop-mini-program var NewApiRootUrl = 'https://www.nideshop.com/api/';
到此部署成功。 |
工作日 8:30-12:00 14:30-18:00
周六及部分節(jié)假日提供值班服務(wù)