uniapp搭建内网映射测试https域名

搭建Https域名服务器

使用github的frp搭建,使用宝塔申请免费https证书,需要先关闭宝塔nginx的反向代理,申请完域名后再开启反向代理即可。

教程

新版frp搭建教程

启动命令

服务器端

sudo systemctl start frps

本地

cd D:\软件安装包\frp_0.52.3_windows_amd64
frpc.exe -c frpc.toml

问题

uniapp内网映射导致的 invalid host header

在manifest.json的h5选项下添加如下内容

"devServer": {
	"disableHostCheck": true
}

你可能感兴趣的:(uni-app,https,网络协议)