iPhone Web服务器搭建(免越狱)--iSH

需求

在iPhone手机搭建Web服务, 将web项目放入口袋中, 无需网络, 也能随时用手机自带浏览器查看项目.

思路

  1. 使用 iSH app, 开启 ssh 服务, 用于将电脑文件传送至手机;
  2. 使用 iSH app, 安装 python3, 启用 http.server 服务.

实现

iSH app安装及 SSH 服务开启

iPhone免越狱Git服务器搭建教程-iSH

iSH 安装 python3

打开 iSH, 输入命令:

apk add python3

复制 index.js/index.html 到手机目录:

iPhone 新建test目录

iphone → 文件app → iSH → 到root目录下创建 webserver/test 目录
iPhone Web服务器搭建(免越狱)--iSH_第1张图片

iSH 启动sshd:

/usr/sbin/sshd

电脑 → cmd

scp “F:\index.html” [email protected]:/root/webserver/test/
scp “F:\index.js” [email protected]:/root/webserver/test/

scp -r test [email protected]:/root/webserver/test
注: 上传目录, 需要添加 -r 参数.
在这里插入图片描述

启动 webserver:

iSH:

python3 -m http.server

iphone自带浏览器打开:

手机浏览器打开

http://127.0.0.1:8000/webserver/test/index.html

切换回iSH, 再切换回浏览器

注:

    打开手机浏览器时, 需要切换回 iSH 激活 webserver(因为iSH不能后台执行), 再切换回浏览器.

电脑访问:

http://192.168.1.184:8000/webserver/test/index.html

你可能感兴趣的:(WebServer,iphone,前端,服务器)