前端部署
使用serve运行vue打包生成的dist项目
首先执行 npm install serve 安装 serve
执行该命令:
> serve dist
UPDATE AVAILABLE The latest version of `serve` is 12.0.0
┌──────────────────────────────────────────────────┐
│ │
│ Serving! │
│ │
│ - Local: http://localhost:5000 │
│ - On Your Network: http://10.110.90.74:5000 │
│ │
│ Copied local address to clipboard! │
│ │
└──────────────────────────────────────────────────┘
后端部署
用nginx将域名反向代理到某个端口
在nginx配置文件上:
location /{
proxy_pass http://localhost:[你的端口];
}
location /{
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:7979/;
}
用screen进行开启多重视窗管理
查看所有会话
screen -ls
新建会话
screen -S [session_name]
进入会话
screen -r [session_name]
关闭会话
完全退出:exit
保持会话退出:同时按 Ctrl+A+D 键
726

被折叠的 条评论
为什么被折叠?



