通过 ssh 访问远程服务器上部署的页面
假设在服务器上启动了一个前端服务,地址为http://localhost:5173 由于服务器的5173端口并没有开放,所以无法通过http://[ip]:5173进行访问 此时,可以通过以下命令: ssh [username]@[ip] -L localhost:8000:localhost:5173 登录之后,就可在浏览器中通过 http://localhost:8000 访问
假设在服务器上启动了一个前端服务,地址为http://localhost:5173 由于服务器的5173端口并没有开放,所以无法通过http://[ip]:5173进行访问 此时,可以通过以下命令: ssh [username]@[ip] -L localhost:8000:localhost:5173 登录之后,就可在浏览器中通过 http://localhost:8000 访问