markdown 使用Ngrok将您的本地工作隧道传输到互联网

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 使用Ngrok将您的本地工作隧道传输到互联网相关的知识,希望对你有一定的参考价值。

* Download [Ngrok](https://ngrok.com/) first & unzip it & enter its directory
```shell
$ chmod +x ngrok
$ cp ngrok /usr/local/bin
```

* Now try if everything is OK (in a directory where ngrok file doesn't exist). If you see Ngrok help, it means everything is OK.
```shell
$ ngrok -help
```

* Start a webserver redirect to localhost;
```shell
ngrok http -host-header=mysite.dev mysite.dev:80
```

* Alternatively you can directly redirect the traffic to localhost:80
```shell
ngrok http :80
```

* If you access the localhost on a different port, you also need to change the used port. Say you are using 8080;
```shell
ngrok http :8080
```

以上是关于markdown 使用Ngrok将您的本地工作隧道传输到互联网的主要内容,如果未能解决你的问题,请参考以下文章

Ngrok 为现有 Vhost 设置 SSL 本地隧道

使用 ngrok 创建隧道以连接到 MongoDB 本地数据库

我正在尝试与 ngrok 共享 localhost

使用 ngrok 的 502 错误网关

使用 ngrok 将 SPFX WebPart 隧道传输到 BrowserStack

如何使用 ngrok 隧道将流量转发到本地托管的 VM 机器的端口?