Bootstrap

Web搭建入门教程:基于ssh向服务器推送文件

Web

ssh登陆命令(需要在bash环境中运行)

# 远程作为root登陆服务器
ssh -i ecs-key.pem [email protected]
cd /home/hana # 移动到工作目录下
ls # 查看目录下的文件
# 远程传输文件
scp -i ecs-key-xianggang.pem my-website.zip [email protected]:/home/hana

假设你上传了一个test.md

mv test.md my-website/content/ # 移动文件位置

pm2服务更新命令

pm2 list
pm2 stop my-website
pm2 start .output/server/index.mjs --name my-website

在网站上查看你的网页,点此查看演示

;