为什么要使用ngrok?
作为一个Web开发者,我们有时候会需要临时地将一个本地的Web网站部署到外网,以供它人体验评价或协助调试等等,通常我们会这么做:
- 找到一台运行于外网的Web服务器
- 服务器上有网站所需要的环境,否则自行搭建
- 将网站部署到服务器上
- 调试结束后,再将网站从服务器上删除
只不过是想向朋友展示一下网站而已,要不要这么麻烦,累感不爱╰(`□′)╯
有了ngrok之后,世界是如此的美好
- 首先注册并下载ngrok,得到一串授权码
- 运行命令
ngrok -authtoken 你的授权码 80
,80是你本地Web服务的端口,而之后ngrok会记住你的授权码,直接ngrok 80
就OK了 - 你会得到一串网址,通过这个网址就可以访问你本地的Web服务了
如何使用呢?
Step 1: Download ngrok
下载地址 https://ngrok.com/
Step 2: Unzip it
On Linux or OSX you can unzip ngrok from a terminal with the following command. On Windows, just double click ngrok.zip.
$ unzip /path/to/ngrok.zip
Step 3: Run it!
Read the Usage Guide for documentation on how to use ngrok. Try it out by running it from the command line:
$ ./ngrok -help
下面是我自己启动的服务
我再3000端口启动本地的服务:
可以看到 ngrok会产生一个Forwarding http://6cdecc48.ngrok.com -> 127.0.0.1:3000
我们访问这个url,可以看到
通过外网就可以看到我们内网的服务了。
使用ngrok将本地Web服务映射到外网
时间: 2024-11-08 05:52:03