mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-10-09 14:31:13 +00:00
Website snapshot
This commit is contained in:
parent
ee0ab66d73
commit
50ec3688a5
281 changed files with 21066 additions and 0 deletions
24
content/blog/ngrok.md
Normal file
24
content/blog/ngrok.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
---
|
||||
title: "Ngrok"
|
||||
date: 2019-11-20T20:56:19-05:00
|
||||
draft: false
|
||||
---
|
||||
|
||||
Let's say you want to spin up a quick demo for a client and you don't want to use a VPS, and they can't access your laptop through the network.
|
||||
|
||||
The easiest way I've known for the past few years to allow another person to access a specific port on your machine is through [ngrok](https://ngrok.com/). Ngrok is nice because not only do they offer a free plan, but they also offer paid plans. This means that you can trust that it'll at least be in business for a little while longer ;)
|
||||
|
||||
## The Process
|
||||
|
||||
You'll need to sign up for an account first. I was then going to write about some of the following steps, but `ngrok` has a really nice quad chart when you login
|
||||
|
||||

|
||||
|
||||
Just note that in step (3) you will actually have a random sequence of characters after `authtoken`.
|
||||
|
||||
Something else you might want to know is how to enable TLS support, luckily that's a simple command line argument.
|
||||
|
||||
```bash
|
||||
ngrok http -bind-tls=true port
|
||||
```
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue