文章目录
- 1. 下载
- 2. 使用
- 3. 创建项目
- 4. 本地访问
- 5. 域名访问
1. 下载
https://ngrok.com/download
根据不同的系统环境下载压缩包
2. 使用
- windows 环境
cd ngrok-stable-windows-amd64
使用命令窗口启动
- 创建账号认证
ngrok.exe authtoken token
- 格式:ngrok.exe http 内网端口
ngrok.exe http 8080
- linux环境
- 格式:./ngrok http 内网端口
./ngrok http 8080
3. 创建项目
package com.gblfy.ngrok.controller;import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;@RestController
public class NgrokController {@GetMapping("/ngrok")public String ngrok() {return "ngrok 公网访问本地项目";}
}
4. 本地访问
http://localhost:8080/ngrok
5. 域名访问
复制域名
- http协议测试
http://eb93-2408-8409-6040-1383-44e0-1ed8-26a6-8803.ngrok.io/ngrok
- https协议测试
https://eb93-2408-8409-6040-1383-44e0-1ed8-26a6-8803.ngrok.io/ngrok