国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > Nginx > 正文

用Nginx反向代理Node.js的方法

2024-08-30 12:29:34
字體:
來源:轉載
供稿:網友

本文介紹了用Nginx反向代理Node.js的方法,分享給大家,具體如下:

安裝pm2

npm install pm2 -gln -s /home/download/node-v8.11.1-linux-x64/lib/node_modules/pm2/bin/pm2 /usr/local/bin/pm2

修改package.json

"scripts": {  "test": "echo /"Error: no test specified/" && exit 1",  "pm2": "/home/download/node-v8.11.1-linux-x64/lib/node_modules/pm2/bin/pm2 start /web/mazey.cn/server/app.js"}

or

"scripts": {  "test": "echo /"Error: no test specified/" && exit 1",  "pm2": "pm2 start app.js"}

啟動pm2

npm run pm2

開機啟動pm2

pm2 savepm2 startup centos

注意

若 pm2 startup centos 失敗,可嘗試 pm2 startup 。

PM2 detected systemv but you precised centos Please verify that your choice is indeed your init system If you arent sure, just run : pm2 startup

修改Nginx配置

vim /etc/nginx/conf.d/*.confupstream nodejs {  server 127.0.0.1:3000;  keepalive 64;}server {  listen 80;  server_name domain.cn;  root /web/mazey.cn;  index index.html index.htm;  # 網站切到/server下時走nodejs  location /server {    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  Connection "";    proxy_pass http://nodejs;  }  location ~ .*/.(gif|jpg|jpeg|png|bmp|swf)$ {    expires 30d;  }  location ~ .*/.(js|css)?$ {    expires 1h;  }}

相應的 app.js :

const express = require('express')const app = express()let hi = 'hi'app.get('/server', (req, res, next) => { hi = `Hello Mazey!/n` next()}, (req, res) => { res.send(` ${hi} ${req.method}/n ${req.originalUrl}/n ${req.query.id}/n `)})const server = app.listen(3000, function () { let host = server.address().address let port = server.address().port console.log('Example app listening at http://%s:%s', host, port)})

注意

若報錯 Cannot GET /xxx 說明 Express 的路由沒配好。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到服務器教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 蚌埠市| 巴里| 南城县| 大兴区| 陆良县| 彝良县| 阿拉尔市| 横峰县| 松潘县| 石渠县| 岢岚县| 简阳市| 葫芦岛市| 油尖旺区| 惠安县| 随州市| 石阡县| 大方县| 广东省| 雷山县| 青冈县| 衡阳县| 通城县| 高雄市| 龙泉市| 伊金霍洛旗| 曲阜市| 黎平县| 建德市| 洛浦县| 永嘉县| 德安县| 来宾市| 正蓝旗| 郓城县| 临武县| 定州市| 云龙县| 武清区| 舟曲县| 许昌市|