ngrok
提供内网穿透服务,可以在自己主机部署服务供外网访问
github https://github.com/inconshreveable/ngrok
安装
官网注册获取authtoken
生成配置
1 | ./ngrok authtoken ******** |
Authtoken saved to configuration file:***.ngrok2/ngrok.yml
默认路径 https://ngrok.com/docs#default-config-location
运行
1 ./ngrok http 8010
自定义
隧道定义参数详解 https://ngrok.com/docs#tunnel-definitions
每个隧道都必须定义
- proto 需要 所有 隧道协议名称,中的一个http,tcp,tls
- addr 需要 所有 转发流量到这个本地端口号或网络地址
示例配置 https://ngrok.com/docs#config-examples
ngrok.cfg
1 | authtoken: ************** |
启动
1 | #默认配置 |