aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2022-07-14 14:28:39 -0400
committerGitHub <noreply@github.com>2022-07-14 14:28:39 -0400
commit33f1f213a304ac8d19ecb5c38e9cde8f33a39356 (patch)
tree1beadb7f5f4081eace8ab6edc8f47cc497240c72
parentbf7f28127e4f3683cdad5396bc80c4cfb2489d23 (diff)
downloadjupyter_safe_port-33f1f213a304ac8d19ecb5c38e9cde8f33a39356.tar.gz
Update README.md
Make -c example consistent with previous example
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index f8ce34d..9758a97 100644
--- a/README.md
+++ b/README.md
@@ -64,7 +64,7 @@ Oops, you forgot about that web server test. 8080 is already bound so you're giv
Let's say you have closed your laptop and lost all of your connections. If you can remember the remote port you used then `-c` will get you up and running in no time...
```
-$ jupyter_safe_port example.lan -c 8080
+$ jupyter_safe_port example.lan -c 8081
Connect via:
-ssh -N -f -L1024:localhost:8080 user@example.lan
+ssh -N -f -L1024:localhost:8081 user@example.lan
```